Hi everyone and Happy New Year, I´m having a bit of trouble integrating a DoFixture with an Import of my fixture classes. Specifically, I have a SetUp page...
The DoFixture must be the first fixture, you cannot have an Import (or any other fixture) in front of it. Even if you could get the DoFixture to load, it...
And there's no real point in using an Import table, as there's no need to mention fixture class names after the one in the first table. Instead, include a...
Hi Ron, Sharing important dynamic state while running different storytests (FitNesse pages) can cause dependency problems that will continue to have an impact:...
... Yes, that's right. FitNesse runs a separate process (FitServer for Java) to run the tests in a suite. It passes one page at a time through a socket to the...
Did anyone had any success in driving Abbot ( the java gui testing framework ) using fitnesse? here are two problems that I've found: 1. In order to use Abbot...
... The test cases may all be independent but that would not mean that they could all run concurrently unless each test case is running against its own ...
Thanks Rick! In a somewhat round about way you were a BIG help. It was your mentioning that you used included files to do what I was attempting that did it for...
It seems that using Refactor Rename on a page that contains a symbolic link to a suite of test pages causes the test pages under the suite to disappear. Here...
... Ok, this means I´m not understanding the Import fixture. I thought all I was doing was importing the class names from a certain namespace in the same way...
You can do that: Just ensure that your first fixture is a DoFixture. Afterwards, you can import additional fixtures by the Import fixture. The first reference...
Hi, I´m not quite understanding the SetUp/TearDown mechanics suitable for DoFixtures. I am almost through with the Fit book and I see lots of setups being...
... Afterwards, you can import additional fixtures by the Import fixture. The first reference must specify the complete path. ... Ok...so let´s say I´m...
... My "GenericDoFixture" is generic in the sense that it does not contain any logic specific to the problem at hand. It provides graceful naming (see below)...
... wrote: Andreas, I´m finding myself a bit confused here. Are you essentially using your GenericDoFixture to aggregate setup operations and other utilities...
Hi, Is there currently no way to include all .jar files from a directory and all its subdirectories like Ant´s **/*.jar Patterns? Best regards, Dadi....
The GenericDoFixture has nothing to do with aggregating setup operations. I'm using a DoFixture for _all_ of my tests, because it's easier to share data...
... Let me see if I understand by using a more concrete example. Let our SUT be an online poker game. Then I would think that the Universal DoFixture could be...
... Hi John, ... Yes. ... Yes, taking the Discounts example from p. 77 of the Fit book as an example we have a class (java) with names for actions that return ...
... I think this would work, although my approach is slightly different. Whatever works for you ;-) ... Yes, but DoFixture tries several strategies, it does...
... wrote: ... [snip] ... How is it different? Are you really just wrapping all your tests with the GenericDoFixture? If you put say a SetUpFixture or...
... Yes. But my test page "starts" another fixture, which becomes the SUT. So I am specific in the test page, and generic in the common setup page. ... Ok, now...
... That´s what I thought. So that gives you the opportunity to "start" fixtures instead of putting specific action methods in the top-level DoFixture that...
Hi Dadi, Import fixtures are solving a problem (explicit package names in storytests) that DoFixture solves in a more general way. Your problem arises because...
Here are some thoughts on setup and teardown. I hope someone finds them useful. Idiom 1 I prefer including setup/teardown pages with !include instead of Suite ...
Hi James, ... Sometimes a single application instance can be shared by using transactions that are aborted at the end of the test, so that changes don't affect...
I've managed running JfcUnit from fixtures (chapter 32 of the Fit book). As I remember, I had to deal with the same inheritance issue with that. I could send...
Hi Andreas, I don't see why you use the ''start'' in the tables here. Is there something that the first DoFixture can't do? Is it related to an earlier ...
Hi Andreas, It appears that you are using DoFixtures in such a way as to emulate the standard Fit intepretation (ie, fixture names in tables, separate fixtures...