|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| NotNull.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | /* | |
| 2 | * Copyright (c) 2001-2006 OFFIS, Tammo Freese. | |
| 3 | * This program is made available under the terms of the MIT License. | |
| 4 | */ | |
| 5 | package org.easymock.internal.matchers; | |
| 6 | ||
| 7 | import org.easymock.IArgumentMatcher; | |
| 8 | ||
| 9 | public class NotNull implements IArgumentMatcher { | |
| 10 | ||
| 11 | public static final NotNull NOT_NULL = new NotNull(); | |
| 12 | ||
| 13 | 1 | private NotNull() { |
| 14 | ||
| 15 | } | |
| 16 | ||
| 17 | 9 | public boolean matches(Object actual) { |
| 18 | 9 | return actual != null; |
| 19 | } | |
| 20 | ||
| 21 | 3 | public void appendTo(StringBuffer buffer) { |
| 22 | 3 | buffer.append("notNull()"); |
| 23 | } | |
| 24 | } |
|
||||||||||