/******************************************************************************* * Copyright (c) 2013 Michael Kutschke. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Michael Kutschke - initial API and implementation ******************************************************************************/ package org.eclipse.recommenders.jayes.io; import static org.hamcrest.number.IsCloseTo.closeTo; import org.hamcrest.Description; import org.hamcrest.TypeSafeMatcher; public final class IsCloseTo extends TypeSafeMatcher<double[]> { private double[] array; private double tolerance; private IsCloseTo(double[] array, double tolerance) { this.array = array; this.tolerance = tolerance; } @Override public void describeTo(Description description) { description.appendValue(array); } @Override protected boolean matchesSafely(double[] item) { if (array == item) { return true; } if (array == null || item == null) { return false; } if (item.length != array.length) { return false; } for (int i = 0; i < item.length; i++) { if (!closeTo(item[i], tolerance).matches(array[i])) { return false; } } return true; } public static IsCloseTo isCloseTo(final double[] array, double tolerance) { return new IsCloseTo(array, tolerance); } }