0

在投票否决我之前,请对我有一点耐心;)。这是我第一次使用 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”有关,但我看不到另一种写该支票的方法。

非常感谢

4

0 回答 0