Home | History | Annotate | Download | only in easymock

Lines Matching refs:null

41      * provided to this method are always not <code>null</code>.

73 * not called: If both argument arrays are null, they match; if one and only
74 * one is null, they do not match.
86 if (expected == null || actual == null) {
96 if (expectedObject == null && actualObject == null) {
100 if (expectedObject == null && actualObject != null) {
104 if (expectedObject != null && actualObject == null) {
126 if (arguments == null)