Index: /branches/SVNtutorial/PizzaOrderIntl/nbproject/project.properties
===================================================================
--- /branches/SVNtutorial/PizzaOrderIntl/nbproject/project.properties	(revision 484)
+++ /branches/SVNtutorial/PizzaOrderIntl/nbproject/project.properties	(revision 485)
@@ -1,3 +1,3 @@
-#Tue Oct 15 15:16:32 PDT 2019
+#Tue Oct 15 18:09:05 PDT 2019
 excludes=
 javac.deprecation=false
@@ -10,5 +10,4 @@
 javac.target=1.7
 annotation.processing.processors.list=
-file.reference.uispec4j-jdk17.jar=uispec4j-jdk17.jar
 javadoc.noindex=false
 javadoc.additionalparam=
@@ -23,5 +22,4 @@
 javac.compilerargs=
 main.class=pizzaorder.GUI
-file.reference.uispec4j-2.4-javadoc.jar=uispec4j-2.4-javadoc.jar
 dist.jar=${dist.dir}/PizzaOrderIntl.jar
 javac.test.processorpath=${javac.test.classpath}
@@ -36,22 +34,22 @@
 javac.source=1.7
 application.vendor=jdalbey
-junit.selected.version=4
+junit.selected.version=3
 debug.classpath=${run.classpath}
 run.jvmargs=
+javac.test.classpath=${javac.classpath}\:${build.classes.dir}\:\:${libs.junit_4.classpath}\:${libs.hamcrest.classpath}
+jar.compress=false
 build.generated.dir=${build.dir}/generated
-jar.compress=false
-javac.test.classpath=${javac.classpath}\:${build.classes.dir}\:\:${libs.junit_4.classpath}\:${libs.hamcrest.classpath}
 javadoc.private=false
 annotation.processing.run.all.processors=true
 application.title=PizzaOrderIntl
 meta.inf.dir=${src.dir}/META-INF
+annotation.processing.enabled=true
 manifest.file=manifest.mf
-annotation.processing.enabled=true
 dist.javadoc.dir=${dist.dir}/javadoc
 src.dir=src
+endorsed.classpath=
 mkdist.disabled=false
-endorsed.classpath=
-javac.classpath=${file.reference.uispec4j-2.4-javadoc.jar}\:${file.reference.uispec4j-jdk17.jar}\:${libs.junit.classpath}\:${libs.junit_4.classpath}
 annotation.processing.enabled.in.editor=false
+javac.classpath=${libs.junit.classpath}\:${libs.junit_4.classpath}
 build.generated.sources.dir=${build.dir}/generated-sources
 javadoc.version=false
Index: anches/SVNtutorial/PizzaOrderIntl/test/pizzaorderintl/PizzaOrderIntlGUITest.java
===================================================================
--- /branches/SVNtutorial/PizzaOrderIntl/test/pizzaorderintl/PizzaOrderIntlGUITest.java	(revision 481)
+++ 	(revision )
@@ -1,86 +1,0 @@
-/*
- * 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 pizzaorderintl;
-
-import java.util.Arrays;
-import java.util.List;
-import org.uispec4j.*;
-import org.uispec4j.interception.*;
-import pizzaorder.GUI;
-
-/**
- *
- * @author Bryan McGuffin
- */
-public class PizzaOrderIntlGUITest extends UISpecTestCase
-{
-
-    public PizzaOrderIntlGUITest(String testName)
-    {
-        super(testName);
-    }
-
-    public void testPizzaGUI()
-    {
-        GUI view = new GUI();
-
-        Window win = new Window(view);
-
-        ComboBox langBox = win.getComboBox();
-
-        assertTrue(langBox.contains("en / English"));
-
-        langBox.select("en / English");
-
-        final List<String> tops = Arrays.asList("Onions", "Olives", "Peppers", "Tomatoes");
-
-        for (String top : tops)
-        {
-            assertFalse(win.getCheckBox(top).isSelected());
-            win.getCheckBox(top).select();
-        }
-
-        for (String top : tops)
-        {
-            assertTrue(win.getCheckBox(top).isSelected());
-        }
-
-        final List<String> nonTops = Arrays.asList("Mushrooms", "Pepperoni");
-        
-        for (String n : nonTops)
-        {
-            assertFalse(win.getCheckBox(n).isSelected());
-        }
-        
-        Button submitButton = win.getButton("Submit");
-        
-        WindowInterceptor inter = WindowInterceptor.init(submitButton.triggerClick());
-        
-        
-        inter.process(new WindowHandler()
-        {
-
-            @Override
-            public Trigger process(Window window) throws Exception
-            {
-                String message1 = "You ordered a pizza with these toppings:";
-                
-                assertTrue(window.containsLabel(message1));
-                
-                for(String t: tops)
-                {
-                    assertTrue(window.containsLabel(t));
-                }
-                
-                return window.getButton("OK").triggerClick();
-            }
-        }).run();
-        
-        
-    }
-    // TODO add test methods here. The name must begin with 'test'. For example:
-    // public void testHello() {}
-}
