【发布时间】:2016-03-06 17:03:50
【问题描述】:
我有以下测试方法一直失败:
/**
* Test of averageResult method, of class MonthlyPayroll.
*/
public void testAverageResult() {
System.out.println("averageResult");
double[] MonthlySales = {4, 5, 6, 7, 8, 9};
int howMany = 6;
double expResult = 6.5;
double epsilon = 1;
double result = MonthlyPayroll.averageResult(MonthlySales, howMany);
assertEquals(expResult, result, epsilon);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
该方法工作正常,当我调试测试时,结果和 expResult 相等,但我收到以下失败消息:
compile-test-single:
Testsuite: pkgbmc.MonthlyPayrollTest
averageResult
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.109 sec
------------- Standard Output ---------------
averageResult
------------- ---------------- ---------------
Testcase: testAverageResult(pkgbmc.MonthlyPayrollTest): FAILED
The test case is a prototype.
junit.framework.AssertionFailedError: The test case is a prototype.
at pkgbmc.MonthlyPayrollTest.testAverageResult(MonthlyPayrollTest.java:61)
有人知道为什么会发生这种情况以及如何解决吗?
【问题讨论】:
-
我错过了什么吗?我不明白:你打电话给
fail(...)并问你为什么考试不及格?