|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
EndsWith.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 EndsWith implements IArgumentMatcher { | |
10 | ||
11 | private final String suffix; | |
12 | ||
13 | 3 | public EndsWith(String suffix) { |
14 | 3 | this.suffix = suffix; |
15 | } | |
16 | ||
17 | 4 | public boolean matches(Object actual) { |
18 | 4 | return (actual instanceof String) && ((String) actual).endsWith(suffix); |
19 | } | |
20 | ||
21 | 1 | public void appendTo(StringBuffer buffer) { |
22 | 1 | buffer.append("endsWith(\"" + suffix + "\")"); |
23 | } | |
24 | } |
|