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.
我正在尝试对 RandomAccess 文件 (rStream) 进行 JUnit 测试,如果用户在搜索文件时插入空白输入,该测试将失败。但是我遇到了困难,需要一些帮助。
@Test public void testOpenDB() { mainApp tester = new mainApp(); assertNotNull("error", tester.openDB(rStream)); }
听起来您正在尝试在这里测试 Swing UI。那是你mainApp的吗?
mainApp
如果合同未履行,我希望您的应用程序会抛出某种异常。如果这是真的,他们只需要@expected在测试方法中添加一个注释并说明将抛出哪个异常类。
@expected