tester.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 SwmmObjects.SwmmData;
import java.io.File;
import java.io.IOException;
import parsers.SwmmParser;

/**
 *
 * @author Lucas Yaege
 */
public class tester {

    public static void main( String[] args ) throws IOException
    {
        File f = new File( "src/baseInputFile.txt" );
        SwmmData in = SwmmParser.Parse( f );
        System.out.println( in );

        String[] result = utils.StringHelpers.splitWithQuotes( "This is   Some Text");
        System.out.println( result[3] );
    }

}