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