Junit:测试文件是否已正确读取

时间:2013-02-18 09:50:21

标签: java junit junit4

在投票给我之前,请跟我有点小熊;)。这是我第一次使用JUnit,这是一个简单的问题,知道:

只想测试是否按预期读取了以下文件:

first
second

但为什么我的测试失败了:

@Test
public void testReadFileTwoRows() {
    File f = new File(FILE_WITH_TWO_ROWS);
    String fileCont = "";       
    String expCont  = "first\nsecond";

    try {           
        fileCont = ImportUtil.readFile(f);
    } catch (IOException e) {           
        fail("File couldn't be read");
    }
    assertEquals("File was not properly read", fileCont, expCont);      
}

我认为它与“\ n”有关,但我没有看到另一种方法来编写该检查。

非常感谢

0 个答案:

没有答案