本文整理匯總了Java中org.junit.runner.Result.getIgnoreCount方法的典型用法代碼示例。如果您正苦於以下問題:Java Result.getIgnoreCount方法的具體用法?Java Result.getIgnoreCount怎麽用?Java Result.getIgnoreCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.junit.runner.Result
的用法示例。
在下文中一共展示了Result.getIgnoreCount方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: 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;
}
示例2: printIgnoredTestCases
import org.junit.runner.Result; //導入方法依賴的package包/類
private void printIgnoredTestCases(final Result result) {
if (result.getIgnoreCount() == 1) {
printlnWarning("1 test case was ignored.");
} else if (result.getIgnoreCount() > 1) {
printlnWarning(result.getIgnoreCount() + " test cases were ignored.");
}
}
示例3: 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();
}
}