Reordering test cases in the FitNesse test suite

I have a test suite with orders ordered as:

Suite1---A
         B
         C

How can I change the order of test cases?

I tried refactoring, but that doesn't help.

+3
source share
1 answer

It doesn't seem like it's possible ...

Remember that order mileage is performed in alphabetical order. Thus, in the above example, TestThree will not start because TestTwo really appears after TestThree

- FitNesse> UserGuide> TestSuites> TagsAndFilters

... but it does not matter. Tests should be independent and not rely on previous tests (except ). SuiteSetUp

+3
source

All Articles