We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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; ...