所以基本上我希望这个测试通过,如果输入一个有效的名字,比如保罗。然而,junit总是失败,我只是想弄清楚为什么。任何帮助是极大的赞赏。当我运行它时,代码实际上有效。
public void testsearchCustomer0001() throws SQLException {
newsagentDatabase testObject = new newsagentDatabase();
try{
assertEquals(1,testObject.searchCustomer("Paul"));
}
catch(Exception e)
{
fail("This should be true");
}
}
这是junit测试。
{{1}}
如果需要信息,我正在使用junit3。代码的实际目的是从数据库输出信息。如果您有任何问题请问他们!我会在这里积极检查。