removing impossible test for intvervalstore containing a string
[jalview.git] / test / intervalstore / nonc / IntervalStore0Test.java
index c2d7864..c096f52 100644 (file)
@@ -199,13 +199,13 @@ public class IntervalStore0Test
     SimpleFeature sf1 = add(store, 10, 20);
     assertTrue(store.contains(sf1));
 
-    try
-    {
-      store.remove("what is this?");
-    } catch (ClassCastException e)
-    {
-      // expected;
-    }
+    // try
+    // {
+    // store.remove("what is this?");
+    // } catch (ClassCastException e)
+    // {
+    // // expected;
+    // }
     assertFalse(store.remove(null));
 
     /*
@@ -414,13 +414,13 @@ public class IntervalStore0Test
     assertTrue(store.contains(sf3));
 
     assertFalse(store.contains(null));
-    try
-    {
-      assertFalse(store.contains("junk"));
-    } catch (ClassCastException e)
-    {
-      // expected;
-    }
+    // try
+    // {
+    // assertFalse(store.contains("junk"));
+    // } catch (ClassCastException e)
+    // {
+    // // expected;
+    // }
   }
 
   @Test(groups = "Functional")