How to use @BeforeClass and @AfterClass in JunitPerf?
        Posted  
        
            by allenzzzxd
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by allenzzzxd
        
        
        
        Published on 2010-04-29T17:07:12Z
        Indexed on 
            2010/04/29
            17:17 UTC
        
        
        Read the original article
        Hit count: 268
        
Hi,
I want to do some actions before the whole test suite (also after the suite). So I wrote like:
public class PerformanceTest extends TestCase {
    @BeforeClass
    public static void suiteSetup() throws Exception {
          //do something
    }
    @AfterClass
    public static void suiteSetup() throws Exception {
          //do something
    }
    @Before
    public void setUp()  throws Exception {
          //do something
    }
    @After
    public void tearDown()  throws Exception {
          //do something
    }
    public PerformanceTest(String testName){
          super(testName);
    }
    public static Test suite() {
          TestSuite suite = new TestSuite();
          Test testcase1 = new PerformanceTest("DoTest1");
          Test loadTest1 = new LoadTest(testcase1, n);
          Test testcase2 = new PerformanceTest("DoTest2");
          Test loadTest2 = new LoadTest(testcase2, n);
    }
    public void DoTest1 throws Throwable{
          //do something
    }
    public void DoTest2 throws Throwable{
          //do something
    }
}
But I found that it never reach the code in @BeforeClass and @AfterClass. So how could I do to solve this problem? Or is there other way to realize this? Thank you for your help.
© Stack Overflow or respective owner