How do I verify a statement in Junit?

How do I verify a statement in Junit?

Verify in Mockito would mean checking if a particular mock object method is being called for a specific time. While verifying that the method has been called for only one time, we can use: verify(mockObject). someMethodOfMockObject(someArgument);