Exemplo n.º 1
0
 /** Test of fileToString method, of class IOUtils. */
 @Test
 public void testFileToString() throws Exception {
   System.out.println("fileToString");
   String filename = testDir + "20100618/test3.txt";
   String expResult = "abfk1\n";
   String result = IOUtils.fileToString(filename);
   assertEquals(expResult, result);
 }