So there is an example of unit test with mock objects. As you can see, the test is written for GetPersonByID method. In the IPersonServices interface there is another method: List GetPersons();
Can anyone tell me how should look a Test method on this service using mock objects? so in case of GetPersons, which has a List type.