Examples of CategorizedReportEntry


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

        .getCanonicalName(), setName, groups));
  }

  @Override
  public void notifySetEnd(String setName, String groups) {
    rl.testSetCompleted(new CategorizedReportEntry(underTest
        .getCanonicalName(), setName, groups));
  }
View Full Code Here

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

        .getCanonicalName(), setName, groups));
  }

  @Override
  public void notifySkipped(TestContext<T> context) {
    rl.testSkipped(new CategorizedReportEntry(underTest.getCanonicalName(),
        context.getFullTestName(), context.getTestCategories()));
  }
View Full Code Here

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

        context.getFullTestName(), context.getTestCategories()));
  }

  @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

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

        this.consoleLogger = consoleLogger;
    }

    @Override
    public void notifyStart(TestContext<T> context) {
        rl.testStarting(new CategorizedReportEntry(
                underTest.getCanonicalName(), context.getFullTestName(),
                context.getTestCategories()));
    }
View Full Code Here

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

                context.getTestCategories()));
    }

    @Override
    public void notifySuccess(TestContext<T> context) {
        rl.testSucceeded(new CategorizedReportEntry(underTest
                .getCanonicalName(), context.getFullTestName(), context
                .getTestCategories()));
    }
View Full Code Here

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

                .getTestCategories()));
    }

    @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

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

                        context.getFullTestName(), cause), null));
    }

    @Override
    public void notifySetStart(String setName, String groups) {
        rl.testSetStarting(new CategorizedReportEntry(underTest
                .getCanonicalName(), setName, groups));
    }
View Full Code Here

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

                .getCanonicalName(), setName, groups));
    }

    @Override
    public void notifySetEnd(String setName, String groups) {
        rl.testSetCompleted(new CategorizedReportEntry(underTest
                .getCanonicalName(), setName, groups));
    }
View Full Code Here

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

                .getCanonicalName(), setName, groups));
    }

    @Override
    public void notifySkipped(TestContext<T> context) {
        rl.testSkipped(new CategorizedReportEntry(underTest.getCanonicalName(),
                context.getFullTestName(), context.getTestCategories()));
    }
View Full Code Here

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

                context.getFullTestName(), context.getTestCategories()));
    }

    @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
Copyright © 2018 www.massapi.com. 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.