Searched defs:never (Results 1 - 9 of 9) sorted by relevance

/external/mockito/src/org/mockito/verification/
H A DVerificationWithTimeout.java16 * verify(mock, timeout(100).never()).bar();
45 * verify(mock, timeout(100).never()).someMethod();
56 public VerificationMode never(); method in interface:VerificationWithTimeout
H A DTimeout.java72 public VerificationMode never() { method in class:Timeout
/external/chromium_org/v8/test/mjsunit/harmony/
H A Diteration-semantics.js138 function never() { throw "unreachable"; }
139 Object.defineProperty(o, prop, {get: never, set: never})
/external/mockito/src/org/mockito/
H A DMockito.java34 * <a href="#4">4. Verifying exact number of invocations / at least once / never </a><br/>
37 * <a href="#7">7. Making sure interaction(s) never happened on mock </a><br/>
198 * <a class="meaningful_link" href="#at_least_verification">at least x</a> / never</h3>
219 * //verification using never(). never() is an alias to times(0)
220 * verify(mockedList, never()).add("never happened");
299 * <h3 id="7">7. <a class="meaningful_link" href="#never_verification">Making sure interaction(s) never happened on mock</a></h3>
308 * //verify that method was never called on a mock
309 * verify(mockOne, never())
1958 public static VerificationMode never() { method in class:Mockito
[all...]
/external/chromium_org/chrome/third_party/mock4js/
H A Dmock4js.js30 object.never = function() {
/external/llvm/lib/Support/
H A Dregcomp.c148 static int never = 0; /* for use in asserts; shuts lint up */ variable
150 #define never 0 /* some <assert.h>s have bugs too */ macro
1178 assert(never);
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java71 * verify(mockFoo, never()).doSomething(); // This will pass, doSomething was never called.
253 /** Creates a {@link CallCount} that only matches if the method was never called. */
254 public static CallCount never() { return new CallCount(0, 0); } method in class:LittleMock
597 // Should never happen.
600 // Should never happen.
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 286 milliseconds