Usually every JUnit test should be encapsulated, but I need to test if an encrypted file stored by EncryptorTest can be decrypted by another Java VM instance in DecryptorTest. You can manage this by running 2 different JUnit test classes (not JUnit tests itself!). The only problem is that I have to guarantee that EncryptorTest runs before DecryptorTest (because the first one saves the file with the encrypted string). How can I do that? I thought about using a TestSuite:
@RunWith(Suite.class)
@SuiteClasses({EncryptorTest.class, DecryptorTest.class})
public class EncrypterDecrypterTestSuite
{
}
But on server every JUnit test will run by itself too, so EncryptorTest and DecryptorTest can get mixed up. How can I prevent this?
JUnit doesn't support the ordering of tests, you might want to use TestNG for this (here is the relevant doc).