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编写的测试类
如果我们需要确保 TestClass2 仅在执行 TestClass1 之后运行。我们如何实现这一目标?
您可以使用 Junit 测试套件实现此目的。当您指定要在测试套件中执行的类列表时,您正在定义一个数组,并且这些测试类将按顺序执行,除非您正在执行并行执行。
请注意,JUnit 不保证类中测试的执行顺序。