Exemplo n.º 1
0
 /** Test of readFile method, of class App. */
 public void testReadFile() throws Exception {
   System.out.println("readFile");
   String path = "src/test/java/abba";
   Charset encoding = Charset.forName("UTF-8");
   String expResult = "abba";
   String result = App.readFile(path, encoding);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
 }