Browsing through the API of AssertJ, I didn't seem to come across anything that covers the behaviour of that of Mockito.verify. Right now my assertions are all using the AssertJ fluent API, and then there's the Mockito.verify which is kind of breaking the flow of the assertions.
Is there a similar way to verify that a method is not called, called exactly once, etc. in AssertJ that I missed?
verify
features. Maybe somewhere along the lines ofverifyThat(myService).methodCalled("myMethod").withParameters(1, "2", ...).is("myExpectedResult")
– Hurty