如何为套件中的所有测试定义全局常量?

时间:2016-05-25 11:24:08

标签: java junit constants

我想拥有可以访问的常量 来自套件中的每个测试类。

如何定义它们?

@RunWith(Suite.class)
@Suite.SuiteClasses({
    ATest.class,
    BTest.class,
    CTest.class,
})

public class AllTests {
   // define constants
}

...

public class ATest {
    @Before
    public void setUp(){
        // use constant here
    }

}

我需要使用继承吗?

0 个答案:

没有答案