I have to test a method in a class which connects to the dabasase and retrievs the data from the database. For this i need some other class object as...
Does your classpath include a path to the .jar/.class that includes the Snmp class? if the COMMAND_PATTERN doesn't include the %p substitution or PADDSTest...
The below is a crude framework for a workflow implementation. Workflows (a.k.a. DoFixture, DomainAdapter, System-Under-Test wrapper) are the preferred...
Is the problem when you are running through the web interface or using the command line runner? Can you try using the hostname rather than localhost? -Ryan ......
If you are using the command line runner, can you try a 'wget' of one of your fitnesse pages to make sure that another tool can properly download the page. ...
Hi All, I am working with a customer who is using SetUp to establish his classpath, but it's not working. You can see the !path resolved in the test results...
In short, no. The !path markups are accumulated up the ancestor tree, and SetUp and SuiteSetUp pages are not in the page's ancestry. To illustrate, presume...
Hi Andrew, Just to be clear, while we're on this subject. A variable that is established in the SetUp or SuiteSetUp would be in scope for TestTargetPage but...
I have several fixes/enhancements that I would like to get contributed to the sourceforge project. How can I do this? Here is a rough list: fitnesse_base.css: ...
fitnesse_base.css: Personal preferences for look & feel may be implemented in fitnesse.css which overrides the default settings in fitnesse_base.css. Move...
Since I'm using a C++ FitnesseServer app, I don't have any .jar/.class files. I set the COMMAND_PATTERN to the complete path to the FitnesseServer app...
I need how to write test tables which can handle arguments and parameteres to the java class. The first and second input fields should be as the parameters to...
Hey guys, I have a client that is using Fitnesse and they want to use JProbe's Coverage product to look at the code coverage of the tests. The fixtures access...
Add some form of the following markup to the top-most page of the JProbe wiki suite: !define COMMAND_PATTERN {java -cp %p <jprobe-wrapper> args %m args} ...
http://www.sdtconf.com After the great response from the last year's, first Simple Design and Testing Conference [SDTConf] in WestChester, PA, we are planning...
Dear fitnesse experts, Please show me to ignore remain talbes in the particular page if some condition = true. Here is my scenario 1. Login with some account [...
"How should i handle the parameters as objects to the method and how should i have the returned objects as the value to the field in the fixture tables?" Great...
Set up your page in a workflow: * DoFixture, * DomainAdapter, or * !define TEST_RUNNER {fitlibrary.suite.FitLibraryServer} then enable stop on error: !| set...
Here's one way to do it: Process the page with a DoFixture, e.g., ... public void Login(string theId) { if (IsDisabled(theId) { AbandonStoryTest(); return; } ...
Thank you very much. Maybe, for .net 1.1 I have to use AbandonStoryTest(Parse theCells). In fact, I tried to use setStopOnError(true) as "Dassing, Andrew" but ...
Andrew, Thank you for the information. That worked. I put that defined that command in the SetUp and it worked for all the tests in that subwiki. Best...
I found this post <http://tech.groups.yahoo.com/group/fitnesse/messages/1901> from 2004 while searching for a solution to a similar problem. I thought I got...
The behavior is correct. Simply put, C() returns A; the setting of B = A is irrelevent because A is invariant in all test cases. ColumnFixture's order of...
B is relevant because I am trying to understand why its value would be reported on the following row. I haven't been able to think of a scenario where this...