要为您的测试用例设置前提条件,您可以使用类似这样的东西 -@Beforepublic void setUp(){ // Set up you preconditions here // This piece of code will be executed before any of the test case execute }
如果您需要在所有测试开始之前运行该方法,则应该使用注释@BeforeClass,或者如果您需要每次执行该类的测试方法时都执行相同的方法,则必须使用@Before铁@Beforepublic void executedBeforeEach() { //this method will execute before every single test}@Testpublic void EmptyCollection() { assertTrue(testList.isEmpty()); }