JAL-3518 pull up [get|list]ResidueAttributes to StructureCommandsI
[jalview.git] / test / jalview / ext / rbvi / chimera / ChimeraCommandsTest.java
index 15d744b..6880985 100644 (file)
@@ -363,6 +363,20 @@ public class ChimeraCommandsTest
   }
 
   @Test(groups = "Functional")
+  public void testListResidueAttributes()
+  {
+    assertEquals(testee.listResidueAttributes(),
+            new StructureCommand("list resattr"));
+  }
+
+  @Test(groups = "Functional")
+  public void testGetResidueAttributes()
+  {
+    assertEquals(testee.getResidueAttributes("binding site"),
+            new StructureCommand("list residues attr 'binding site'"));
+  }
+
+  @Test(groups = "Functional")
   public void testStartNotifications()
   {
     List<StructureCommandI> cmds = testee.startNotifications("to here");