UnitTests are to operate standalone, so their order shouldn’t matter. There is however a way to to some initialization (and cleanup) withing the scope where the tests run, by creating a setUp() and a tearDown() method.
They will operate stand-alone, but there are bits of code which have to be executed over and over again.
For this purpose I’d like to have an Init method.
I forgot about the setUp and tearDown methods, they’ll do the job for what I am trying to achieve.