I have a list of Object
List<MyClass> list = <an array of MyClass instances>
The MyClass class contains a method invokeMe();
Is there any way I can verify that the invokeMe method is called on one and only one of these MyClass instances in the list using Mockito?
Any of these classes could be called as they are accessed by different threads.v