JUnit测试用例,用于检查文件是否已创建

时间:2013-08-23 07:26:25

标签: unit-testing testing junit3

我创建了一个简单的程序,它将通过缓冲编写器创建dat文件并将一些数据写入该文件,现在请告知我可以通过哪些junit测试用例来检查文件是否已创建c:开车,我正在使用junit 3,请指教。

1 个答案:

答案 0 :(得分:31)

File file = new File("c:/pathOfTheCreatedFile");
assertTrue(file.exists());
// TODO: read the file. Check that it contains what it's supposed to contain