Unit Test – What is Mocking? and Why?
In simple, mocking is creating objects that mimic the behavior of real objects. Refer to the following case study : Tested : Java 1.8 JUnit 4.12 Mockito 2.0.73-beta Mock Object Read this Wikipedia Mock object. 1. Java Examples A simple Author and Book example. 1.1 BookService to return a list of books by author name. …