I have a test suite class:
@RunWith(Suite.class)
@Suite.SuiteClasses({
GameMasterTest.class,
PlayerTest.class,
})
public class BananaTestSuite {
try using @before and creating a method which instances all objects you need if you need to clear something after ending just use @After
something like this:
@Before
public void instanceMeasureList() {
/* all what you need to execute before starting your tests
*/
}
@Test
public void testRequest() {
fail("Not yet implemented");
}
@Test
public void testEpochDate() {
fail("Not yet implemented");
}
@After
public void deleteOutputFile() {
fail("Not yet implemented");
}