org.toxos.processassertions.api.internal.Assert Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2014 Tiese Barrell
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package org.toxos.processassertions.api.internal;
import org.hamcrest.Matcher;
import org.hamcrest.MatcherAssert;
import java.util.Collection;
/**
* Asserts conditions.
*
* @author Tiese Barrell
*
*/
public final class Assert {
private Assert() {
super();
}
/**
* Asserts that actual
satisfies the condition(s) specified by matcher
. Throws an
* {@link AssertionError} if the matcher is not satisfied.
*
* @param
* the type the matcher handles
* @param actual
* the value being compared
* @param matcher
* the matcher to perform assertions with
*/
public static final void assertThat(T actual, Matcher super T> matcher) {
MatcherAssert.assertThat(actual, matcher);
}
/**
* Creates a matcher that validates the actual collection of Strings matches the expected collection of Strings.
*
* @param expected
* the expected collection of Strings. May not be {@code null}
* @return a new matcher
*/
public static final Matcher> equalCollection(Collection expected) {
return new EqualCollectionMatcher(expected);
}
}