Examples of bringLentItemBack()


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

        //GIVEN
        BookInfo bookInfo = new BookInfo(100, "Some Book Title");
        bookInfo.lend();

        //WHEN
        bookInfo.bringLentItemBack();

        //THEN
        assertThat(bookInfo.returnDueDate(), is(nullValue()));
    }
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.