cleaned up these tests.
[feisty_meow.git] / kona / src / test / java / semantics / instance_of.java
index 2a5f2b0fb0532d20468e94d6eb83ec3ec4b9822c..47d2d826fb302bda29993097cd9d5685af7b44f3 100644 (file)
@@ -2,25 +2,28 @@ package test.java.semantics;
 
 import java.util.List;
 
+//hmmm: convert this to simple unit test.
 class instance_of
 {
-    public instance_of() {}
-    
-    public Object cogitate() {
-        return null;
-    }
+       public instance_of()
+       {
+       }
 
-    public static void main(String s[]) throws Exception
-    {
-        // we are just asserting that it is safe to do instanceof on an object that is null.
-        // let's test that theory.
-        instance_of tony = new instance_of();
-        Object fred = tony.cogitate();  // will produce null.
-        if (fred instanceof List<?>) {
-            throw new Exception("that should not have happened!");
-        } else {
-            System.out.println("told us null is not an instance of List, which is correct.");
-        }
-        
-    }
+       public Object cogitate()
+       {
+               return null;
+       }
+
+       public static void main(String s[]) throws Exception
+       {
+               // we are just asserting that it is safe to do instanceof on an object that is null.
+               // let's test that theory.
+               instance_of tony = new instance_of();
+               Object fred = tony.cogitate(); // will produce null.
+               if (fred instanceof List<?>) {
+                       throw new Exception("FAILURE!  fred should not be instance of List<?> !  null is an instance of something!");
+               } else {
+                       System.out.println("told us null is not an instance of List, which is correct.");
+               }
+       }
 }
\ No newline at end of file