reportTest.java [src/tests] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package tests;

import java.io.File;
import java.io.IOException;
import parsers.SwmmReportParser;

/**
 *
 * @author Lucas Yaege
 */
public class reportTest 
{
    public static void main(String[] args) throws IOException 
    {
        File reportFile = new File("test/report.txt");
        parsers.SwmmReportParser report = new SwmmReportParser(reportFile);
    }
}