Home | History | Annotate | Download | only in easymock-tools

Lines Matching full:actual

262     documentAdded("New Document"): expected: 1, actual: 0

279 documentAdded("New Document"): expected: 1, actual: 2
314 documentAdded("New Document"): expected: 1, actual: 0
377 documentChanged("Document"): expected: 3, actual: 4
393 documentChanged("Document"): expected: 3, actual: 2
490 that is created at the time of the actual call. Since EasyMock 2.2, the object returned by
610 To match an actual method call on the Mock Object with an
627 voteForRemovals([Ljava.lang.String;@2db19d): expected: 1, actual: 0
628 documentRemoved("Document 1"): expected: 1, actual: 0
629 documentRemoved("Document 2"): expected: 1, actual: 0
656 <dd>Matches if the actual value is equals the expected value. Available for all primitive types and for objects.</dd>
662 <dd>Matches if the actual value is equal to the given value allowing the given delta. Available for <code>float</code> and <code>double</code>.</dd>
665 <dd>Matches if the actual value is equal to the given value according to <code>Arrays.equals()</code>. Available for primitive and object arrays.</dd>
668 <dd>Matches if the actual value is null. Available for objects.</dd>
671 <dd>Matches if the actual value is not null. Available for objects.</dd>
674 <dd>Matches if the actual value is the same as the given value. Available for objects.</dd>
677 <dd>Matches if the actual value is an instance of the given class, or if it is in instance of a class that extends or implements the given class. Null always return false. Available for objects.</dd>
680 <dd>Matches if the actual value is less/less or equal/greater or equal/greater than the given value. Available for all numeric primitive types and <code>Comparable</code>.</dd>
683 <dd>Matches if the actual value starts with/contains/ends with the given value. Available for <code>String</code>s.</dd>
686 <dd>Matches if the actual value/a substring of the actual value matches the given regular expression. Available for <code>String</code>s.</dd>
698 <dd>Matches if the actual value is equals according to <code>Comparable.compareTo(X o)</code>. Available for all numeric primitive types and <code>Comparable</code>.</dd>
701 <dd>Matches if <code>comparator.compare(actual, value) operator 0</code> where the operator is &lt;,&lt;=,&gt;,&gt;= or ==. Available for objects.</dd>
728 This interface contains two methods: <code>matches(Object actual)</code> checks whether the actual argument
742 public boolean matches(Object actual) {
743 if (!(actual instanceof Throwable)) {
746 String actualMessage = ((Throwable) actual).getMessage();
747 return expected.getClass().equals(actual.getClass())