Package org.apache.maven.surefire.report

Examples of org.apache.maven.surefire.report.LegacyPojoStackTraceWriter


  @Override
  public void notifyError(TestContext<T> context, Throwable cause) {
    rl.testError(new CategorizedReportEntry(underTest.getCanonicalName(),
        context.getFullTestName(), context.getTestCategories(),
        new LegacyPojoStackTraceWriter(underTest.getCanonicalName(),
            context.getFullTestName(), cause), null));
  }
View Full Code Here


    @Override
    public void notifyFailure(TestContext<T> context, Throwable cause) {
        rl.testFailed(new CategorizedReportEntry(underTest.getCanonicalName(),
                context.getFullTestName(), context.getTestCategories(),
                new LegacyPojoStackTraceWriter(underTest.getCanonicalName(),
                        context.getFullTestName(), cause), null));
    }
View Full Code Here

    @Override
    public void notifyError(TestContext<T> context, Throwable cause) {
        rl.testError(new CategorizedReportEntry(underTest.getCanonicalName(),
                context.getFullTestName(), context.getTestCategories(),
                new LegacyPojoStackTraceWriter(underTest.getCanonicalName(),
                        context.getFullTestName(), cause), null));
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.surefire.report.LegacyPojoStackTraceWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.