你能告诉我是否有办法禁用和启用内联的 junit.framework.Assert 命令以忽略它们?
代码示例只是为了说明我的意思:
junitOff(); // first method I need help with
assertTrue(false); //would normally cause an AssertionError
junitOn(); // second method I need help with
System.out.println("Broke through asserTrue without Error")
我知道可以使用 try/catch 但这不是我想要的,因为我无法在断言之后继续执行...