我正在使用Junit 4.我的整個程序工作正常。我正在嘗試編寫一個測試用例。但有一個錯誤...Java Junit測試問題
這裏是非常基本的樣本測試
public class di extends TestCase{
private static Records testRec;
public void testAbc() {
Assert.assertTrue(
"There should be some thing.",
di.testRec.getEmployee() > 0);
}
}
,當我運行這個它給我的錯誤
fName can not be null
如果我使用超做這樣的
public TestA() {
super("testAbc");
}
它工作得很好。這不是在此之前使用JUnit 3.X 我做錯了或者他們改變了它:( 很抱歉,如果我不明白
有什麼辦法沒有executre超檢查?或調用函數等等?
TestAgnes是什麼?它在第一個代碼片段中沒有提及。請清除你的問題。 – Bozho