Index: trunk/src/atmsdriver/ConsoleDriver.java
===================================================================
--- trunk/src/atmsdriver/ConsoleDriver.java	(revision 103)
+++ trunk/src/atmsdriver/ConsoleDriver.java	(revision 104)
@@ -24,4 +24,18 @@
     private final List<String> dotColorInputList;
 
+    /** Entry point for the application.
+     * 
+     * @param args unused
+     */
+    public static void main(String[] args)
+    {
+        Highways highways = new Highways(
+        "config/vds_data/lds.txt",
+        "config/vds_data/loop.txt",
+        "config/vds_data/highwaysMeta.txt",
+        "localhost", 8080);
+        ConsoleDriver app = new ConsoleDriver(highways);
+        app.runConsole();
+    }
     /**
      * Constructor. Sets the highways model and generates the input validation
@@ -35,8 +49,5 @@
         // set input validation lists
         routeNumInputList = generateRouteNumInputList();
-        dotColorInputList = new ArrayList<>(Arrays.asList("R", "Y", "G"));
-        
-        // run the console driver
-        runConsole();
+        dotColorInputList = new ArrayList<>(Arrays.asList("R", "Y", "G"));        
     }
     
