FitNesse. UserGuide. FitLibraryUserGuide.
FolderRunner [add child]
FolderRunner:
Run FolderRunner as follows:
      java -cp fitlibraryRunner.jar fitlibrary.runner.FolderRunner testDiry reportDiry
If you want feedback on progress of FolderRunner, instead run FolderRunnerUI as follows:
      java -cp fitlibraryRunner.jar fitlibrary.runner.FolderRunnerUI testDiry reportDiry

FolderRunner

Spreadsheet files

SetUp and TearDown

The following special files may be in the testDiry or any of its sub-directories, and are used as follows:
Before running a test, all SetUp files that appear in the current directory and all those above it (up to the level of the testDiry) are (effectively) added to the start of the test. They are added with the top-most first.

All TearDown files that appear in the current directory and all those above it (up to the level of the testDiry) are (effectively) added to the end of the test. They are added with the top-most last.

NB: this differs from the FitNesse approach, which only takes the closest SetUp or TearDown.

Possible future changes