标签: java testng assertions
String test = null; Assert.assertEquals(test, "test", "Null test passed");
我希望上面的断言失败,因为“null”和“test”不相等。但是,虽然断言没有继续执行测试,但断言仍会默默传递。有人可以向我解释一下吗?