AI代码解释 importorg.testng.annotations.Test;importorg.testng.asserts.SoftAssert;publicclassAssertTestDemo{@TestpublicvoidtestSoftAssert(){System.out.println("Test start");SoftAssert assertion=newSoftAssert();assertion.assertEquals(12,13,"两者不相等");System.out.println("Test complete");System.out....