JAL-2281 test added to show searchRefs is now not case sensitive
[jalview.git] / test / jalview / util / DBRefUtilsTest.java
index 0431cf6..1c68a71 100644 (file)
@@ -77,6 +77,13 @@ public class DBRefUtilsTest
     sources = new String[] { "EMBLCDS" };
     selected = DBRefUtils.selectRefs(dbrefs, sources);
     assertNull(selected);
+
+    sources = new String[] { "embl", "uniprot" };
+    selected = DBRefUtils.selectRefs(dbrefs, sources);
+    assertEquals(3, selected.length);
+    assertSame(ref1, selected[0]);
+    assertSame(ref2, selected[1]);
+    assertSame(ref3, selected[2]);
   }
 
   /**