TestNG跟踪异常处理代码提供了一个选项.可以测试是否需要代码抛出异常或不抛出. @Test注释expectedExceptions 参数一起使用.现在,让我们来看看@Test(expectedExceptions)在动作中. 创建一个类 创建一个Java类进行测试说MessageUtil.java 在 C:\ > TestNG_WORKSPACE 在printMessage()方法里添加一个错误条件 /* * This class prints the given message on co
@Test(expectedExceptions = ) 在测试的时候,某些用例的输入条件,预期结果是代码抛出异常,那么这个时候就需要testNG的异常测试,先看一段会抛出异常的代码 exception.java: import org.testng.annotations.Test; public class exception { @Test public void testMethod() { int a = 0; int b = 10; System.out.println(b / a)