Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

  • Any methods that contain a medadata tag of [BeforeClass] are executed.
  • Wiki MarkupOnce the [\[BeforeClass\]|FlexUnit BeforeClass] methods have finished, each method labeled as \ [Test\] is sequenced with all methods that contain [\[Before\]|FlexUnit Before] and [\[After\]|FlexUnit After] and variables with [\[Rule\]|FlexUnit Rule] metadata tags Before each test, all class variables marked as [\[Rule\]|FlexUnit Rule] will be executed followed by all methods marked as a [\[Before\]|FlexUnit Before] method. After this occurs, the actual test method will execute. After the test has finished, regardless of whether it succeeded or failed, all class variables marked as [\[Rule\]|FlexUnit Rule] will execute followed by all methods marked as an [\[After\]|FlexUnit After] method. This procedure will be repeated for all tests in the class.
  • Any methods that contain a metadata tag of [AfterClass] are finally executed.

...