Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Junit。要求是将许多测试套件合二为一。所以我用
@Runwith(Suite.class)
@Suite.SuiteClasses({a.class,b.class})
class SuiteRunner{}
它的成功有一些条件,我需要调用这个类。我需要从同一个包中的不同java文件实例化这个类的一个对象。就像是:
SuiteRunner suite=new SuiteRunner();.
SuiteRunner suite=new SuiteRunner();
但它不起作用。
提前致谢。
您可以在 中放置一个@AfterClass方法SuiteRunner,然后使用它来使用您需要的信息更新静态字段。然后,您可以从其他类访问此静态字段。
@AfterClass
SuiteRunner