Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Test
- public void shouldLendBook_addBorrowersNameToList() {
- Book bookToTest = new Book("TestTitle", "2017", "Kimes", 1);
- List<String> expectedBorrwersList = new ArrayList<>();
- bookToTest.lendBook("Niedzielski");
- assertEquals(expectedBorrwersList.contains("Niedzielski"), ());
- }
Advertisement
Add Comment
Please, Sign In to add comment