File: RangeMatcher.java

package info (click to toggle)
mkgmap 0.0.0%2Bsvn4905-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,032 kB
  • sloc: java: 73,856; xml: 1,695; python: 713; sh: 240; makefile: 149; perl: 31
file content (49 lines) | stat: -rw-r--r-- 1,382 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Copyright (C) 2008 Steve Ratcliffe
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 or
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
/* Create date: 01-Jul-2009 */
package func.lib;

import org.hamcrest.BaseMatcher;
import org.hamcrest.Description;

/**
 * Test for a range of values around the expected one.  This allows
 * small changes without having to fix the test every time there is a
 * small change to the output size.
 * 
 * @author Steve Ratcliffe
 */
public class RangeMatcher extends BaseMatcher<Integer> {
	private final int minVal;
	private final int maxVal;

	public RangeMatcher(int size) {
		this(size, size/20+1);
	}

	public RangeMatcher(int size, int range) {
		this.minVal = size - range;
		this.maxVal = size + range;
	}

	public boolean matches(Object o) {
		int other = (Integer) o;
		if (other > minVal && other < maxVal)
			return true;
		else return false;
	}

	public void describeTo(Description description) {
		description.appendValueList("between ", " and ", "", minVal, maxVal);
	}
}