对不起啊,今天又遇到问题了还是关于Junit测试的源代码是
import java.io.File;
import java.io.IOException;
public class DeleteAll {
// public static void main(String[] args) throws IOException {
//
// File file = new File("f:\\java.txt");
// System.out.println(file.createNewFile());
//
// DeleteAll.DeleteAll(file);
// System.out.println(file.exists());
// }
public static void DeleteAll(File file){
if(file.isFile()||file.list().length==0){
file .delete();
}
else{
File[] files = file.listFiles();
for(File element:files){
element.delete();
}
}
}
}
我使用main方法测试了很正确啊,但是使用Junit的测试就出问题;
报错的提示为junit.framework.AssertionFailedError: No tests found in junit.DeleteAlltest
我已经按照规定建立好包和类了,以前的测试了几个还行为什么这个不行了啊
|
|