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.
我面临的问题如下:我正在做一个 SWTBot 测试,在该测试中我创建了一些组合,删除它们,添加其他组合等等。问题是,在每次测试开始后,SWTBot 测试并不是从初始状态开始,它只是追加元素,而不是删除旧元素并插入新元素。你能告诉我,每次我运行测试时,我应该怎么做才能让 SWTBot 测试从头开始?
提前致谢。
通常,测试必须在执行后清理其环境。这就是方法 tearDown 和注释 @After 和 @AfterClass 的用途。
如果您的测试在关闭时清理了应用程序,那么接下来的测试应该会更好。