Index: branches/SVNtutorial/PizzaOrderIntl/test/pizzaorder/SampleTest.java
===================================================================
--- branches/SVNtutorial/PizzaOrderIntl/test/pizzaorder/SampleTest.java	(revision 504)
+++ branches/SVNtutorial/PizzaOrderIntl/test/pizzaorder/SampleTest.java	(revision 504)
@@ -0,0 +1,32 @@
+
+package pizzaorder;
+
+import junit.framework.TestCase;
+
+/**
+ *
+ * @author jdalbey
+ */
+public class SampleTest extends TestCase {
+    
+    public SampleTest(String testName) {
+        super(testName);
+    }
+    
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+    }
+    
+    @Override
+    protected void tearDown() throws Exception {
+        super.tearDown();
+    }
+
+    public void testInit()
+    {
+        // Test that constructor doesn't crash
+        GUI gui = new GUI();
+    }
+
+}
