// Generated source. package org.hamcrest; public class Matchers { /** * Decorates another Matcher, retaining the behavior but allowing tests * to be slightly more expressive. * * eg. assertThat(cheese, equalTo(smelly)) * vs assertThat(cheese, is(equalTo(smelly))) */ public static org.hamcrest.Matcher is(org.hamcrest.Matcher matcher) { return org.hamcrest.core.Is.is(matcher); } /** * This is a shortcut to the frequently used is(equalTo(x)). * * eg. assertThat(cheese, is(equalTo(smelly))) * vs assertThat(cheese, is(smelly)) */ public static org.hamcrest.Matcher is(T value) { return org.hamcrest.core.Is.is(value); } /** * This is a shortcut to the frequently used is(instanceOf(SomeClass.class)). * * eg. assertThat(cheese, is(instanceOf(Cheddar.class))) * vs assertThat(cheese, is(Cheddar.class)) */ public static org.hamcrest.Matcher is(java.lang.Class type) { return org.hamcrest.core.Is.is(type); } /** * Inverts the rule. */ public static org.hamcrest.Matcher not(org.hamcrest.Matcher matcher) { return org.hamcrest.core.IsNot.not(matcher); } /** * This is a shortcut to the frequently used not(equalTo(x)). * * eg. assertThat(cheese, is(not(equalTo(smelly)))) * vs assertThat(cheese, is(not(smelly))) */ public static org.hamcrest.Matcher not(T value) { return org.hamcrest.core.IsNot.not(value); } /** * Is the value equal to another value, as tested by the * {@link java.lang.Object#equals} invokedMethod? */ public static org.hamcrest.Matcher equalTo(T operand) { return org.hamcrest.core.IsEqual.equalTo(operand); } /** * Is the value an instance of a particular type? */ public static org.hamcrest.Matcher instanceOf(java.lang.Class type) { return org.hamcrest.core.IsInstanceOf.instanceOf(type); } /** * Evaluates to true only if ALL of the passed in matchers evaluate to true. */ public static org.hamcrest.Matcher allOf(org.hamcrest.Matcher... matchers) { return org.hamcrest.core.AllOf.allOf(matchers); } /** * Evaluates to true only if ALL of the passed in matchers evaluate to true. */ public static org.hamcrest.Matcher allOf(java.lang.Iterable> matchers) { return org.hamcrest.core.AllOf.allOf(matchers); } /** * Evaluates to true if ANY of the passed in matchers evaluate to true. */ public static org.hamcrest.Matcher anyOf(org.hamcrest.Matcher... matchers) { return org.hamcrest.core.AnyOf.anyOf(matchers); } /** * Evaluates to true if ANY of the passed in matchers evaluate to true. */ public static org.hamcrest.Matcher anyOf(java.lang.Iterable> matchers) { return org.hamcrest.core.AnyOf.anyOf(matchers); } /** * Creates a new instance of IsSame * * @param object The predicate evaluates to true only when the argument is * this object. */ public static org.hamcrest.Matcher sameInstance(T object) { return org.hamcrest.core.IsSame.sameInstance(object); } /** * This matcher always evaluates to true. */ public static org.hamcrest.Matcher anything() { return org.hamcrest.core.IsAnything.anything(); } /** * This matcher always evaluates to true. * * @param description A meaningful string used when describing itself. */ public static org.hamcrest.Matcher anything(java.lang.String description) { return org.hamcrest.core.IsAnything.anything(description); } /** * This matcher always evaluates to true. With type inference. */ public static org.hamcrest.Matcher any(java.lang.Class type) { return org.hamcrest.core.IsAnything.any(type); } /** * Matches if value is null. */ public static org.hamcrest.Matcher nullValue() { return org.hamcrest.core.IsNull.nullValue(); } /** * Matches if value is null. With type inference. */ public static org.hamcrest.Matcher nullValue(java.lang.Class type) { return org.hamcrest.core.IsNull.nullValue(type); } /** * Matches if value is not null. */ public static org.hamcrest.Matcher notNullValue() { return org.hamcrest.core.IsNull.notNullValue(); } /** * Matches if value is not null. With type inference. */ public static org.hamcrest.Matcher notNullValue(java.lang.Class type) { return org.hamcrest.core.IsNull.notNullValue(type); } /** * Wraps an existing matcher and overrides the description when it fails. */ public static org.hamcrest.Matcher describedAs(java.lang.String description, org.hamcrest.Matcher matcher, java.lang.Object... values) { return org.hamcrest.core.DescribedAs.describedAs(description, matcher, values); } public static org.hamcrest.Matcher hasItemInArray(org.hamcrest.Matcher elementMatcher) { return org.hamcrest.collection.IsArrayContaining.hasItemInArray(elementMatcher); } public static org.hamcrest.Matcher hasItemInArray(T element) { return org.hamcrest.collection.IsArrayContaining.hasItemInArray(element); } public static org.hamcrest.Matcher> hasItem(T element) { return org.hamcrest.collection.IsCollectionContaining.hasItem(element); } public static org.hamcrest.Matcher> hasItem(org.hamcrest.Matcher elementMatcher) { return org.hamcrest.collection.IsCollectionContaining.hasItem(elementMatcher); } public static org.hamcrest.Matcher> hasItems(org.hamcrest.Matcher... elementMatchers) { return org.hamcrest.collection.IsCollectionContaining.hasItems(elementMatchers); } public static org.hamcrest.Matcher> hasItems(T... elements) { return org.hamcrest.collection.IsCollectionContaining.hasItems(elements); } public static org.hamcrest.Matcher> hasEntry(org.hamcrest.Matcher keyMatcher, org.hamcrest.Matcher valueMatcher) { return org.hamcrest.collection.IsMapContaining.hasEntry(keyMatcher, valueMatcher); } public static org.hamcrest.Matcher> hasEntry(K key, V value) { return org.hamcrest.collection.IsMapContaining.hasEntry(key, value); } public static org.hamcrest.Matcher> hasKey(org.hamcrest.Matcher keyMatcher) { return org.hamcrest.collection.IsMapContaining.hasKey(keyMatcher); } public static org.hamcrest.Matcher> hasKey(K key) { return org.hamcrest.collection.IsMapContaining.hasKey(key); } public static org.hamcrest.Matcher> hasValue(org.hamcrest.Matcher valueMatcher) { return org.hamcrest.collection.IsMapContaining.hasValue(valueMatcher); } public static org.hamcrest.Matcher> hasValue(V value) { return org.hamcrest.collection.IsMapContaining.hasValue(value); } public static org.hamcrest.Matcher isIn(java.util.Collection collection) { return org.hamcrest.collection.IsIn.isIn(collection); } public static org.hamcrest.Matcher isIn(T[] param1) { return org.hamcrest.collection.IsIn.isIn(param1); } public static org.hamcrest.Matcher isOneOf(T... elements) { return org.hamcrest.collection.IsIn.isOneOf(elements); } public static org.hamcrest.Matcher closeTo(double operand, double error) { return org.hamcrest.number.IsCloseTo.closeTo(operand, error); } public static > org.hamcrest.Matcher greaterThan(T value) { return org.hamcrest.number.OrderingComparisons.greaterThan(value); } public static > org.hamcrest.Matcher greaterThanOrEqualTo(T value) { return org.hamcrest.number.OrderingComparisons.greaterThanOrEqualTo(value); } public static > org.hamcrest.Matcher lessThan(T value) { return org.hamcrest.number.OrderingComparisons.lessThan(value); } public static > org.hamcrest.Matcher lessThanOrEqualTo(T value) { return org.hamcrest.number.OrderingComparisons.lessThanOrEqualTo(value); } public static org.hamcrest.Matcher equalToIgnoringCase(java.lang.String string) { return org.hamcrest.text.IsEqualIgnoringCase.equalToIgnoringCase(string); } public static org.hamcrest.Matcher equalToIgnoringWhiteSpace(java.lang.String string) { return org.hamcrest.text.IsEqualIgnoringWhiteSpace.equalToIgnoringWhiteSpace(string); } public static org.hamcrest.Matcher containsString(java.lang.String substring) { return org.hamcrest.text.StringContains.containsString(substring); } public static org.hamcrest.Matcher endsWith(java.lang.String substring) { return org.hamcrest.text.StringEndsWith.endsWith(substring); } public static org.hamcrest.Matcher startsWith(java.lang.String substring) { return org.hamcrest.text.StringStartsWith.startsWith(substring); } public static org.hamcrest.Matcher hasToString(org.hamcrest.Matcher toStringMatcher) { return org.hamcrest.object.HasToString.hasToString(toStringMatcher); } public static org.hamcrest.Matcher> typeCompatibleWith(java.lang.Class baseType) { return org.hamcrest.object.IsCompatibleType.typeCompatibleWith(baseType); } /** * Constructs an IsEventFrom Matcher that returns true for any object * derived from eventClass announced by source. */ public static org.hamcrest.Matcher eventFrom(java.lang.Class eventClass, java.lang.Object source) { return org.hamcrest.object.IsEventFrom.eventFrom(eventClass, source); } /** * Constructs an IsEventFrom Matcher that returns true for any object * derived from {@link java.util.EventObject} announced by source * . */ public static org.hamcrest.Matcher eventFrom(java.lang.Object source) { return org.hamcrest.object.IsEventFrom.eventFrom(source); } /* android-changed REMOVE public static org.hamcrest.Matcher hasProperty(java.lang.String propertyName) { return org.hamcrest.beans.HasProperty.hasProperty(propertyName); } public static org.hamcrest.Matcher hasProperty(java.lang.String propertyName, org.hamcrest.Matcher value) { return org.hamcrest.beans.HasPropertyWithValue.hasProperty(propertyName, value); } */ public static org.hamcrest.Matcher hasXPath(java.lang.String xPath, org.hamcrest.Matcher valueMatcher) { return org.hamcrest.xml.HasXPath.hasXPath(xPath, valueMatcher); } public static org.hamcrest.Matcher hasXPath(java.lang.String xPath) { return org.hamcrest.xml.HasXPath.hasXPath(xPath); } }