Ejemplo n.º 1
0
 public void testContainsShouldReturnTrueForCorrectId() throws Exception {
   assertTrue("expected true for recognized isbn", gateway.contains("isbn"));
 }
Ejemplo n.º 2
0
 public void testContainsShouldReturnFalseIfNoSuchBook() throws Exception {
   assertFalse(gateway.contains("noSuchBook"));
 }