- BDDMockito - Class in org.mockito
-
Behavior Driven Development style of writing tests uses //given //when //then comments as fundamental parts of your test methods.
- BDDMockito() - Constructor for class org.mockito.BDDMockito
-
- BDDMockito.BDDMyOngoingStubbing<T> - Interface in org.mockito
-
- BDDMockito.BDDStubber - Interface in org.mockito
-
- BDDMockito.Then<T> - Interface in org.mockito
-
Provides fluent way of mock verification.
- booleanThat(ArgumentMatcher<Boolean>) - Static method in class org.mockito.ArgumentMatchers
-
Allows creating custom boolean
argument matchers.
- booleanThat(Matcher<Boolean>) - Static method in class org.mockito.hamcrest.MockitoHamcrest
-
Enables integrating hamcrest matchers that match primitive boolean
arguments.
- byteThat(ArgumentMatcher<Byte>) - Static method in class org.mockito.ArgumentMatchers
-
Allows creating custom byte
argument matchers.
- byteThat(Matcher<Byte>) - Static method in class org.mockito.hamcrest.MockitoHamcrest
-
Enables integrating hamcrest matchers that match primitive byte
arguments.