HomeSort by relevance Sort by last modified time
    Searched refs:verify (Results 1076 - 1100 of 2616) sorted by null

<<41424344454647484950>>

  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
RntoCommandHandlerTest.java 47 verify(session);
SiteCommandHandlerTest.java 49 verify(session);
SmntCommandHandlerTest.java 46 verify(session);
StorCommandHandlerTest.java 61 verify(session);
StouCommandHandlerTest.java 63 verify(session);
StruCommandHandlerTest.java 50 verify(session);
SystCommandHandlerTest.java 52 verify(session);
TypeCommandHandlerTest.java 50 verify(session);
UserCommandHandlerTest.java 51 verify(session);
  /external/mockito/src/main/java/org/mockito/
BDDMockito.java 210 * @see #verify(Object)
211 * @see #verify(Object, VerificationMode)
228 * @see #verify(Object)
234 * @see #verify(Object, VerificationMode)
240 * @see InOrder#verify(Object)
246 * @see InOrder#verify(Object, VerificationMode)
273 * @see #verify(Object)
277 return verify(mock);
281 * @see #verify(Object, VerificationMode)
285 return verify(mock, mode)
    [all...]
Mockito.java 39 * <a href="#1">1. Let's verify some behaviour! </a><br/>
113 * <h3 id="1">1. <a class="meaningful_link" href="#verification" name="verification">Let's verify some behaviour!</a></h3>
131 * verify(mockedList).add("one");
132 * verify(mockedList).clear();
137 * verify whatever interactions you are interested in.
161 * //Although it is possible to verify a stubbed invocation, usually <b>it's just redundant</b>
162 * //If your code cares what get(0) returns, then something else breaks (often even before verify() gets executed).
164 * verify(mockedList).get(0);
203 * //<b>you can also verify using an argument matcher</b>
204 * verify(mockedList).get(anyInt())
1919 public static <T> T verify(T mock) { method in class:Mockito
1945 public static <T> T verify(T mock, VerificationMode mode) { method in class:Mockito
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/verification/
AtLeast.java 29 public void verify(VerificationData data) { method in class:AtLeast
AtMost.java 32 public void verify(VerificationData data) { method in class:AtMost
Calls.java 32 public void verify(VerificationData data) { method in class:Calls
InOrderWrapper.java 27 public void verify(VerificationData data) { method in class:InOrderWrapper
NoMoreInteractions.java 24 public void verify(VerificationData data) { method in class:NoMoreInteractions
Only.java 24 public void verify(VerificationData data) { method in class:Only
Times.java 32 public void verify(VerificationData data) { method in class:Times
  /external/mockito/src/test/java/org/mockito/internal/progress/
MockingProgressImplTest.java 18 import static org.mockito.Mockito.verify;
  /external/mockito/src/test/java/org/mockitousage/bugs/
ConcurrentModificationExceptionOnMultiThreadedVerificationTest.java 48 verify(target, timeout(expectedMaxTestLength).times(TIMES * nThreads)).targetMethod("arg");
ShouldMocksCompareToBeConsistentWithEqualsTest.java 61 verify(mock, atLeastOnce()).compareTo(any(Date.class));
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StubbingWithThrowablesTest.java 205 verify(mock).size();
206 verify(mock).clone();
220 verify(mock).size();
226 verify(mock).clone();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
RealTrustRootIndex.java 50 cert.verify(publicKey);
  /external/selinux/gui/
statusPage.py 133 def verify(self, message): member in class:statusPage
147 if self.verify(_("Changing the policy type will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system. Do you wish to continue?")) == gtk.RESPONSE_NO:
161 if self.verify(_("Changing to SELinux disabled requires a reboot. It is not recommended. If you later decide to turn SELinux back on, the system will be required to relabel. If you just want to see if SELinux is causing a problem on your system, you can go to permissive mode which will only log errors and not enforce SELinux policy. Permissive mode does not require a reboot Do you wish to continue?")) == gtk.RESPONSE_NO:
166 if self.verify(_("Changing to SELinux enabled will cause a relabel of the entire file system on the next boot. Relabeling takes a long time depending on the size of the file system. Do you wish to continue?")) == gtk.RESPONSE_NO:
  /external/testng/src/test/java/test/configuration/
ConfigurationGroups2SampleTest.java 53 public void verify() { method in class:ConfigurationGroups2SampleTest

Completed in 1881 milliseconds

<<41424344454647484950>>