JUnit assertEquals失败

时间:2015-12-02 12:40:43

标签: java junit

我有以下测试方法,它会一直失败:

/**
 * 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)

任何人都知道为什么会发生这种情况以及如何解决这个问题?

1 个答案:

答案 0 :(得分:10)

失败的召唤

Application.ExecuteExcel4Macro "Show.ToolBar(""Ribbon"", False)"

使测试失败。

请注意,在我知道的任何IDE中,您都可以(双)点击该行

fail("The test case is a prototype.");

让您准确到达有问题的行,这不是您的at pkgbmc.MonthlyPayrollTest.testAverageResult(MonthlyPayrollTest.java:61)

相关问题