File dir = new File(LOG_DIR_NASA);
for (File child : dir.listFiles()) {
br = new BufferedReader(new FileReader(LOG_DIR_NASA + child.getName()));
while ((line = br.readLine()) != null) {
//System.out.println(child.getName() + " " +line);
Match gm = g.match(line);
gm.captures();
assertNotNull(gm.toJson());
assertNotEquals("{\"Error\":\"Error\"}", gm.toJson());
}
br.close();