Exemple #1
0
 @Test
 public void testLostBookNotOnLoan() {
   testingBook.setState(EBookState.LOST);
   try {
     testingBook.lose();
     fail("Runtime Exception");
   } catch (RuntimeException e) {
     assertTrue(true);
   }
 }