コード例 #1
0
 public void testContainsShouldReturnTrueForCorrectId() throws Exception {
   assertTrue("expected true for recognized isbn", gateway.contains("isbn"));
 }
コード例 #2
0
 public void testContainsShouldReturnFalseIfNoSuchBook() throws Exception {
   assertFalse(gateway.contains("noSuchBook"));
 }