Skip to content
Vincent Parrett edited this page Jul 11, 2014 · 4 revisions

The TearDown method is run after every test in the same class. It can be any method which is decorated with the [TearDown] attribute.

type
  TTestSomething = class
  [TearDown]
   procedure TestTearDown;
  [Test]
  procedure Test_That_Something_Works;
...
Clone this wiki locally