In DUnit, SetUp and TearDown is called before (and after, respectively) each test is executed .
In SetUp I create an object that loads data from a file. This is slow, especially if I have a lot of tests.
Is there a way to call SetUp once before doing ALL tests (and obviously the same for TearDown )?
source share