Examples of lend()


Examples of inheritance.vs.composition.BookInfo.lend()

        //GIVEN
        BookInfo bookInfo = new BookInfo(100, "Some Book Title");
        LocalDate inAMonthsTime = DateTime.now().plusMonths(1).toLocalDate();

        //WHEN
        bookInfo.lend();

        //THEN
        assertThat(bookInfo.returnDueDate(), is(inAMonthsTime));
    }
View Full Code Here

Examples of inheritance.vs.composition.BookInfo.lend()

    @Test
    public void testBookLoosesReturnDateWhenReturned() throws Exception {
        //GIVEN
        BookInfo bookInfo = new BookInfo(100, "Some Book Title");
        bookInfo.lend();

        //WHEN
        bookInfo.bringLentItemBack();

        //THEN
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.