我试过代码
package Base;
import org.testng.Assert;
import org.testng.annotations.Test;
public class Assertcheck
{
@Test
public void check() {
Assert.assertTrue(true, "testing the string true");
}
}
并且代码成功但不显示消息“测试字符串为真”。我检查了控制台输出以及 testNG 结果。