Search the web
Sign In
New User? Sign Up
fitnesse
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2381 - 2413 of 14140   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2381
FYI, FitNesse will be included in the XP Immersion 2.0 Course. www.objectmentor.com/Immersion2 ... Robert C. Martin (Uncle Bob) | email:...
Robert C. Martin
rmartinoma
Offline Send Email
Feb 4, 2005
9:02 pm
2382
Hi Just discovered this list, and been looking at the archives. Apologies if this has been covered before: I'm using HtmlFixture, and I am testing a website...
joan
jefmcg
Offline Send Email
Feb 7, 2005
4:26 pm
2383
This question doesn't appear to have been asked before. I'm following the steps in the "Writing FitNesse tests in Python" tutorial, and get as far as clicking...
Anthony Albert Nassar
aanassar
Offline Send Email
Feb 7, 2005
4:45 pm
2384
N.B.: ntvdm.exe provides an environment for 16-bit programs. This problem may go away if I upgrade to WinXP....
Anthony Albert Nassar
aanassar
Offline Send Email
Feb 7, 2005
5:09 pm
2385
It seems like something in the combination of Fitnesse + PyFit makes it very difficult to see exceptions. We've got a situation where imports from the Python...
ewinganita
Offline Send Email
Feb 7, 2005
5:16 pm
2386
I have written a DbUnitFixture (included below) which allows me to both prepopulate a database in the setup of a test as well as verify the database contents...
bbeskow
Offline Send Email
Feb 7, 2005
5:17 pm
2387
Thanks John...Will try to get it working this week ... confused a...
ash_927
Offline Send Email
Feb 7, 2005
5:18 pm
2388
Even better: use System.Diagnostics.Debugger.Break() calls in your code. It will pop up a box, and you can attach the debugger at that point. Scott On Thu,...
Scott Hunter
huntes12345
Offline Send Email
Feb 7, 2005
5:18 pm
2389
I created a simple dotnet test which worked great on windows XP. I m oved it to a windows 2003 server and keep getting ...
dan_gilkerson
Offline Send Email
Feb 7, 2005
5:19 pm
2390
I would like to add a comment for each item I am testing in a column fixture. for example: playerName | addPlayer? | countPlayers? | ... not count | where...
cp4test
Offline Send Email
Feb 7, 2005
5:19 pm
2391
Could you do something as simple as give the column a name of 'comment', have a string in your fixture named comment, and then ignore it in your fixture? ... ...
Bob Koss
rskoss
Offline Send Email
Feb 7, 2005
5:35 pm
2392
From: "Anthony Albert Nassar" <devl.at.anthonynassar.com@...> To: "fitnesse@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Feb 7, 2005
10:47 pm
2393
From: "ewinganita" <ewinganita.at.yahoo.com@...> To: "fitnesse@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Feb 7, 2005
10:47 pm
2394
I don't think you can do that in a column fixture because the column fixture will look for a field on the class named "comment". If, however, you just leave it...
David Chelimsky
dchelimsky
Offline Send Email
Feb 8, 2005
12:58 am
2395
A tip I learned from Brian Marick - http://www.testing.com/cgi-bin/blog/2004/04 "I also find it useful to put "inline" comments in my tests. I do that by...
Rex Madden
rexmadden
Offline Send Email
Feb 8, 2005
7:16 pm
2396
Aliases require wikiwords or URLs. The .# syntax is parsed specially for a the time being and it won't work in aliases. We intend on making the # syntax part...
Micah Martin
slagyr
Offline Send Email
Feb 9, 2005
1:04 pm
2397
Hello all, I used Fitnesse (Java) at a previous job and loved it. Now I'm working in Python and am looking forward to getting the PyFit stuff going, although...
Troy Frever
troywf
Offline Send Email
Feb 9, 2005
6:04 pm
2398
Thanks for the initiative. I went ahead and posted a couple of messages to extreme-python. Hopefully that group will start to have some traction. The next step...
Grig Gheorghiu
gheorghe_ghe...
Offline Send Email
Feb 10, 2005
12:32 am
2399
Hi I have two FitNesse servers running on a machine and would like to stop one (from an ant task). How do I do that? Thanks Srini...
Srinivasan Ranganathan
indian_robyn
Offline Send Email
Feb 10, 2005
12:57 pm
2400
With the november release, this can be tricky. You'll have to know the process ID so you can kill it. A graceful shutdown features has been added and will be...
Micah Martin
slagyr
Offline Send Email
Feb 10, 2005
1:15 pm
2401
Anyone make any progress on this? Or is it still waiting for the Java one to finalize before doing the C# version? Also, we are still having problems running...
ericheikkila
Offline Send Email
Feb 15, 2005
6:08 pm
2402
... The Java version of the TestRunner has been modified now. No progress has been made on the C# version yet but it should not be hard to write it. ... How...
Micah Martin
slagyr
Offline Send Email
Feb 15, 2005
7:08 pm
2403
Here is the problem: I want to use a FitNesse Acceptance test to call an existing interface which returns a complex object(for example Person). I would like to...
Guess??
travismgibson
Offline Send Email
Feb 15, 2005
7:08 pm
2404
You can do that with a row fixture: http://fitnesse.org/FitNesse.RowFixture ... David Chelimsky Object Mentor, Inc....
david@...
dchelimsky
Offline Send Email
Feb 15, 2005
7:44 pm
2405
David , I am not talking about a set of records. I am talking about a complex object. For example: public class Address { String street; String city; String...
Guess??
travismgibson
Offline Send Email
Feb 15, 2005
8:31 pm
2406
There are a couple of ways to handle that: You could write a wrapper just for your tests that looks like this: public class PersonWrapper { private Person...
david@...
dchelimsky
Offline Send Email
Feb 15, 2005
8:41 pm
2410
David, No offense but that seems a lot of work because our domain model is quite a bit larger than the example. Why not either use an XML based...
Guess??
travismgibson
Offline Send Email
Feb 15, 2005
10:35 pm
2411
I think the last time I brought this issue up, someone (probably you hehe), mentioned the memory thing and we changed the arguments to up the memory and ran...
Eric Heikkila
ericheikkila
Offline Send Email
Feb 16, 2005
2:15 am
2412
From: "Guess??" <travismgibson.at.yahoo.com@...> To: "fitnesse@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Feb 16, 2005
3:45 am
2413
I have a Fit test table with "!img http://files/images/wall.jpg" and etc in all the cells. Without making changes to a page myself, extra "!img " seem to be...
Rick Mugridge
rickmugridge
Offline Send Email
Feb 16, 2005
8:13 am
Messages 2381 - 2413 of 14140   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help