That should work OK. In what way are the nested tables ignored? There are several examples of multiply-nested tables for arrays of arrays of objects (and lists...
When trying to run fitnesse tests with j2re-1_4_2_14-linux-i586, I get these exceptions: Exception in thread "main" java.lang.UnsupportedClassVersionError: ...
... The download page (http://www.fitnesse.org/FitNesse.DownLoad) says the 20060719 release (latest) requires Java 5. You might be able to try the 20050731...
... Does Fitnesse have to be run with 1.4? Or does it need to run the fixtures in a 1.4 JVM? (It might be possible to modify the command pattern to start a...
... Looking at it again, I'm pretty sure it won't work because you need the fitnesse.jar in the classpath and that's probably what has the dependency on JDK...
no problem. thanks for trying. For now, we are pushing Java 1.4 support till the next release. At that time I will either figure out a way to use the previous...
Im facing problem problem integrating the CC.NET control with Fitnesse.If anyone has succeded interating CC.NET with fitnesse, What exactly are the steps to be...
What problems are you facing? it's fairly easy to integrate cc.net with fitnesse; however there is a trick involved in formatting results. .Net test runner...
With a little bit of coding, you can actually write a task in CC.Net that will be doing all those things for you. That's what I did for my company. ... ...
I have a page on a fitnesse server that has a copyright symbol in the fitnesse table, when I use "Wiki Import Update" from properties I lose the character on...
Hi Folks, I have an assert method for DoFixture code but the problem is since it does not return anything when the test passes, the cells do not become green. ...
Thanks, Rick. But this is a void method since I want to return the exception raised by the assert method I have. without assert, I would not be having any clue...
When I attempt to unszip the downloaded full version, It asks me for password when attempting to unzip. File "TestBlankAndNullKeyword" is password protected....
I created a password file and called it like so: java -cp fitnesse.jar fitnesse.FitNesse -a password.txt -p 8080 %1 %2 %3 %4 -e 0 -o Fitnesse starts...
In the test fixture, create a wrapper to call to the void() from within a try/catch block; have the catch return false on exception or true by default. ...
Thanks Andrew. I have done that and it works. But just out of curiosity was wondering if there's another explicit way to override pass/fail conditions. Cheers ...
You do not need to include both fit and fitnesse jar files. Fit is included inside the fitnesse.jar. -Ryan ... -- Ryan McCullough mailto:rmccullough@......
There may be a way, but it's a little scary. 1. Override the doRow() method: private Parse myCurrentCells; // : // : public void doRow(Parse row) { ...
Two things looks strange here. 1. The fitnesse listener is on port 80...a port usually in use already: 1. My fitness starting log ... FitNesse (20060719)...
Hi, there seems to be a problem with the ImportFixture. Wenn the html contains blanks and/or newlines/carriage returns the namespace is not added with those...
The following is sufficient: public boolean myAction() { myMethod(); return true; } It's not necessary to catch the exception, because a false return or a ...