hi all
i was wondering if anyone could help me out with fitnesse /fitlibrary.
I know i should post it to the FitLibrary mailinglist on sourceforge (i
did, no replies) but i was hoping that someone on this mailing list has
already done something like this before.
I have downloaded the latest fitnesse.jar (version 20111026) and i am
running it like this in my maven project
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<dependencies>
</dependencies>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>fitlibrary.runner.FolderRunner</mainClass>
<arguments>
<argument>src/main/resources/fit</argument>
<argument>target/fit</argument>
</arguments>
</configuration>
</plugin>
I have created spreadsheet tests in the folder src/main/resources/fit
the plugin ran fine, but in the fit report output i keep on getting this
error
com.om.example.dvr.fixtures.CreatePrograms *SetUpDataWithName*
------------------------------
Missing class or Missing method. Possibly:
- public Type setUpDataWithName(Type1 arg1) { }
Test*testDataWithName*
------------------------------
Missing class or Missing method. Possibly:
- public Type testDataWithName(Type1 arg1) { }
I am suspecting fit/fitnesse cannot see my fixture class (which extends
DoFixture and it is located in src/main/java)
could anyone assist and help me out pls?
w/kindest regards
marco