有没有办法在After方法中使用ITestResult获取完整的错误/异常?

时间:2018-09-17 12:50:16

标签: testng

@Test(priority = 16, enabled = true)
    public void C2410859_FilterAlertsByCard()
            throws IOException, InterruptedException, ATUTestRecorderException, APIException {

        record.start();
        launchUrl();
        startResult();
        startTestCase(Thread.currentThread().getStackTrace()[1].getMethodName().toString());
        LoginApplication(username, password);
        HomePage homePage = new HomePage();
        homePage.MyAlerts.click();
        MyAlerts myalerts = new MyAlerts();

    }




    @AfterMethod
    public void afterMethod(ITestResult result) throws ATUTestRecorderException {
        resultOfTest(result);   
        endTestcase();
        endResult();
        record.stop();
        closeBrowsers();
    }

resultOfTest:

public static void resultOfTest(ITestResult result) {
        try
         {
            if(result.getStatus() == ITestResult.SUCCESS)
            {

                //Do something here
                System.out.println("passed **********");
            }

            else if(result.getStatus() == ITestResult.FAILURE)
            {
                 //Do something here
                System.out.println("Failed ***********");
                test.fail("This test is failed due to "+ result.getThrowable());

            }

             else if(result.getStatus() == ITestResult.SKIP ){

                System.out.println("Skiped***********");

            }
        }
           catch(Exception e)
           {
             e.printStackTrace();
           }
    }

这仅显示一个班轮错误(例如,空指针异常)。有没有办法在After方法中使用ITestResult获取完整的错误/异常?

1 个答案:

答案 0 :(得分:3)

如果无法通过try catch()块处理,则可以在IMethodResult对象的AfterMethod中获取它。

示例:

异常类型:java.lang.ArithmeticException:/零

@Test
public void testDemo() {
    int i;
    i = 9 / 0;
}

@AfterMethod
public void afterMethod(ITestResult result) {
    if (result.getStatus() == ITestResult.FAILURE) {
            String testResult = result.getThrowable();
            System.out.println(testResult);
    } 
}

此处testDemo方法由于算术异常而失败,因此ITestResult具有fail方法。通过使用result.getThrowable();方法,您可以获取异常描述。

但是,如果事情是由try-catch()块处理的,那么AtferMethod中将没有异常详细信息。

@Test
public void testDemo() {
    try {
        int i;
        i = 9 / 0;
    } catch (Exception e) {
        e.printStackTrace();
    }
}

@AfterMethod
public void afterMethod(ITestResult result) {
    if (result.getStatus() == ITestResult.FAILURE) {
            String testResult = result.getThrowable();
            System.out.println(testResult);
    } 
}

这里的内容是由try-catch块处理的,因此它不会失败,Test方法变为pass。因此,您不能在ITestResult中将异常详细信息视为失败。