本文整理匯總了Java中org.junit.runner.Result.getFailureCount方法的典型用法代碼示例。如果您正苦於以下問題:Java Result.getFailureCount方法的具體用法?Java Result.getFailureCount怎麽用?Java Result.getFailureCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.junit.runner.Result
的用法示例。
在下文中一共展示了Result.getFailureCount方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: runTestSuiteAgainst
import org.junit.runner.Result; //導入方法依賴的package包/類
/**
* Creates and runs a JUnit test runner for testSuite.
*
* @param testSuite the class defining test cases to run
* @param view a UI component to report test failures to
* @return the counts of failures and total test cases.
*/
static RunResult runTestSuiteAgainst(Class testSuite, View view)
{
if(testSuite == null)
throw new NullPointerException("testSuite");
if(view == null)
throw new NullPointerException("view");
Result result = new JUnitCore().run(testSuite);
if (result.getFailureCount() > 0)
{
for (Failure f : result.getFailures())
view.declarePassProgramTestFailure(f.getTrace());
}
return new RunResult(result.getFailureCount(), result.getRunCount());
}
示例2: merge
import org.junit.runner.Result; //導入方法依賴的package包/類
/**
* Updates the current state of <code>this</code> with the <code>result</code>.
*
* @param testClass The test class executed.
* @param result The results of the test class execution.
* @return <code>this</code>
*/
public TestResults merge(Class<?> testClass, Result result) {
LOG.info("Tests run: {}, Failures: {}, Skipped: {}, Time elapsed: {} - in {}",
result.getRunCount(), result.getFailureCount(), result.getIgnoreCount(),
TimeUnit.SECONDS.convert(result.getRunTime(), TimeUnit.MILLISECONDS),
testClass.getName());
numRun += result.getRunCount();
numFailed += result.getFailureCount();
numIgnored += result.getIgnoreCount();
// Collect the failures
if (!result.wasSuccessful()) {
failures.addAll(result.getFailures());
}
return this;
}
示例3: testRunFailed
import org.junit.runner.Result; //導入方法依賴的package包/類
private void testRunFailed(final Result result) {
if (result.getFailureCount() > 1) {
printlnError(result.getFailureCount() + " test cases failed.");
} else {
printlnError("1 test case failed.");
}
printIgnoredTestCases(result);
}
示例4: TestResult
import org.junit.runner.Result; //導入方法依賴的package包/類
public TestResult(Result result) {
runCount = result.getRunCount();
failureCount = result.getFailureCount();
ignoreCount = result.getIgnoreCount();
runTime = result.getRunTime();
if (!wasSuccessful()) {
throwable = result.getFailures().get(0).getException();
}
}
示例5: main
import org.junit.runner.Result; //導入方法依賴的package包/類
public static void main(String[] argv) {
JUnitCore junit = new JUnitCore();
Result result = null;
result = junit.run(Request.method(TestParser.class, "malformedTest4"));
if (result.getFailureCount() > 0) {
for (Failure failure : result.getFailures()) {
failure.getException().printStackTrace();
}
}
System.exit(0);
}
示例6: run
import org.junit.runner.Result; //導入方法依賴的package包/類
/**
* Parses "trials.xml" as found as a resource on the current class path and executes the trials against
* the given Synthesizer reporting progress to the given View.
*
* Expects a trialpack to be on the current classpath.
*
* @param synthesizer the Synthesizer to use for creating programs from draft programs identified in trials.
* @param view the UI component for reporting execution progress.
* @throws IOException if there is a program reading resources (like "trails.xml") on the classpath.
* @throws ParseException if "trials.xml" is not of the expected format
* @throws ClassCastException if "PassProgram" or "PassProgramTest" cannot be loaded from teh current classpath.
*/
void run(Synthesizer synthesizer, View view) throws IOException, ParseException, ClassNotFoundException
{
if(synthesizer == null)
throw new NullPointerException("synthesizer");
if(view == null)
throw new NullPointerException("view");
/*
* Parse trials.xml from inside the trialpack (assumed to be on classpath) into a Directive structure.
*/
Directive directive;
{
// We expect the trialpack jar file to be on the classpath. That jar file should have a
// trails.xml file its root directory. So look for it at just "trails.xml" path.
String trailsXml = new String(getResource("trials.xml"), StandardCharsets.UTF_8);
directive = DirectiveXmlV1Parser.makeDefault().parse(trailsXml);
}
/*
* Test the test suite by asserting that all test cases pass when given the pass program.
*
* Stop the program if this is not the case.
*/
// expect PassProgram class inside the trailpack which is assumed to be on the class path
Class passProgram = getClass().getClassLoader().loadClass("PassProgram");
// expect PassProgramTest class inside the trailpack which is assumed to be on the class path
Class passProgramTestSuite = getClass().getClassLoader().loadClass("PassProgramTest");
view.declareTestingTestSuite(passProgramTestSuite, passProgram);
Result result = new JUnitCore().run(passProgramTestSuite); // run the test cases against PassProgram
view.declareNumberOfTestCasesInSuite(result.getRunCount());
if(result.getFailureCount() > 0) // if the pass program did not pass the test suite
{
for (Failure f : result.getFailures())
view.declarePassProgramTestFailure(f.getTrace());
}
else // pass program did pass the test suite, proceed to running the user specified trials
{
List<Trial> trials = makeTrials(directive, DraftBuilderBayou1_1_0::new);
TrialsRunner.runTrails(trials, synthesizer, view);
}
}