OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:orderingContext
(Results
1 - 3
of
3
) sorted by null
/external/mockito/src/org/mockito/internal/verification/checkers/
AtLeastXNumberOfInvocationsInOrderChecker.java
23
private final InOrderContext
orderingContext
;
25
public AtLeastXNumberOfInvocationsInOrderChecker(InOrderContext
orderingContext
) {
26
this.
orderingContext
=
orderingContext
;
30
List<Invocation> chunk = finder.findAllMatchingUnverifiedChunks(invocations, wanted,
orderingContext
);
39
invocationMarker.markVerifiedInOrder(chunk, wanted,
orderingContext
);
/external/mockito/src/org/mockito/internal/invocation/
InvocationsFinder.java
23
public List<Invocation> findAllMatchingUnverifiedChunks(List<Invocation> invocations, InvocationMatcher wanted, InOrderContext
orderingContext
) {
24
List<Invocation> unverified = removeVerifiedInOrder(invocations,
orderingContext
);
125
private List<Invocation> removeVerifiedInOrder(List<Invocation> invocations, InOrderContext
orderingContext
) {
128
if (
orderingContext
.isVerified(i)) {
150
private final InOrderContext
orderingContext
;
152
public RemoveUnverifiedInOrder(InOrderContext
orderingContext
) {
153
this.
orderingContext
=
orderingContext
;
157
return !
orderingContext
.isVerified(invocation);
/external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar
Completed in 27 milliseconds