HomeSort by relevance Sort by last modified time
    Searched defs:hamcrest (Results 101 - 125 of 169) sorted by null

1 2 3 45 6 7

  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
IsCompatibleType.java 1 package org.hamcrest.object;
3 import org.hamcrest.Description;
4 import org.hamcrest.Matcher;
5 import org.hamcrest.TypeSafeMatcher;
IsEventFrom.java 1 package org.hamcrest.object;
3 import org.hamcrest.Description;
4 import org.hamcrest.Matcher;
5 import org.hamcrest.TypeSafeDiagnosingMatcher;
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
IsBlankString.java 2 package org.hamcrest.text;
4 import org.hamcrest.Description;
5 import org.hamcrest.Matcher;
6 import org.hamcrest.TypeSafeMatcher;
10 import static org.hamcrest.core.AnyOf.anyOf;
11 import static org.hamcrest.core.IsNull.nullValue;
IsEmptyString.java 2 package org.hamcrest.text;
4 import org.hamcrest.Description;
5 import org.hamcrest.Matcher;
6 import org.hamcrest.TypeSafeMatcher;
8 import static org.hamcrest.core.AnyOf.anyOf;
9 import static org.hamcrest.core.IsNull.nullValue;
IsEqualIgnoringWhiteSpace.java 1 package org.hamcrest.text;
3 import org.hamcrest.Description;
4 import org.hamcrest.Matcher;
5 import org.hamcrest.TypeSafeMatcher;
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
HasPropertyTest.java 1 package org.hamcrest.beans;
3 import org.hamcrest.Matcher;
6 import static org.hamcrest.AbstractMatcherTest.*;
7 import static org.hamcrest.beans.HasProperty.hasProperty;
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
IsArrayContainingInOrderTest.java 1 package org.hamcrest.collection;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
6 import static org.hamcrest.collection.IsArrayContainingInOrder.arrayContaining;
7 import static org.hamcrest.core.IsEqual.equalTo;
IsArrayTest.java 1 package org.hamcrest.collection;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.BaseMatcher;
5 import org.hamcrest.Description;
6 import org.hamcrest.Matcher;
8 import static org.hamcrest.collection.IsArray.array;
9 import static org.hamcrest.core.IsEqual.equalTo;
IsEmptyCollectionTest.java 1 package org.hamcrest.collection;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
10 import static org.hamcrest.collection.IsEmptyCollection.empty;
11 import static org.hamcrest.core.Is.is;
IsEmptyIterableTest.java 1 package org.hamcrest.collection;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
10 import static org.hamcrest.collection.IsEmptyIterable.emptyIterable;
IsInTest.java 1 package org.hamcrest.collection;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
5 import org.hamcrest.StringDescription;
IsIterableContainingInAnyOrderTest.java 1 package org.hamcrest.collection;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
5 import org.hamcrest.collection.IsIterableContainingInOrderTest.WithValue;
10 import static org.hamcrest.collection.IsIterableContainingInAnyOrder.containsInAnyOrder;
11 import static org.hamcrest.collection.IsIterableContainingInOrderTest.make;
12 import static org.hamcrest.collection.IsIterableContainingInOrderTest.value;
IsMapContainingKeyTest.java 1 package org.hamcrest.collection;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
10 import static org.hamcrest.MatcherAssert.assertThat;
11 import static org.hamcrest.collection.IsMapContaining.hasKey;
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/number/
BigDecimalCloseToTest.java 1 package org.hamcrest.number;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
8 import static org.hamcrest.number.BigDecimalCloseTo.closeTo;
IsNanTest.java 1 package org.hamcrest.number;
3 import org.hamcrest.Matcher;
6 import static org.hamcrest.AbstractMatcherTest.*;
7 import static org.hamcrest.number.IsNaN.notANumber;
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/object/
HasToStringTest.java 1 package org.hamcrest.object;
3 import org.hamcrest.Matcher;
6 import static org.hamcrest.AbstractMatcherTest.*;
7 import static org.hamcrest.core.IsEqual.equalTo;
8 import static org.hamcrest.object.HasToString.hasToString;
MatchesPatternTest.java 1 package org.hamcrest.object;
3 import org.hamcrest.Matcher;
4 import org.hamcrest.text.MatchesPattern;
9 import static org.hamcrest.AbstractMatcherTest.*;
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/text/
IsBlankStringTest.java 1 package org.hamcrest.text;
3 import org.hamcrest.Matcher;
6 import static org.hamcrest.AbstractMatcherTest.*;
7 import static org.hamcrest.text.IsBlankString.blankOrNullString;
8 import static org.hamcrest.text.IsBlankString.blankString;
IsEmptyStringTest.java 1 package org.hamcrest.text;
3 import org.hamcrest.Matcher;
6 import static org.hamcrest.AbstractMatcherTest.*;
7 import static org.hamcrest.text.IsEmptyString.emptyOrNullString;
8 import static org.hamcrest.text.IsEmptyString.emptyString;
IsEqualIgnoringCaseTest.java 1 package org.hamcrest.text;
3 import org.hamcrest.Matcher;
6 import static org.hamcrest.AbstractMatcherTest.*;
7 import static org.hamcrest.text.IsEqualIgnoringCase.equalToIgnoringCase;
IsEqualIgnoringWhiteSpaceTest.java 1 package org.hamcrest.text;
3 import org.hamcrest.AbstractMatcherTest;
4 import org.hamcrest.Matcher;
6 import static org.hamcrest.MatcherAssert.assertThat;
7 import static org.hamcrest.core.IsNot.not;
8 import static org.hamcrest.text.IsEqualIgnoringWhiteSpace.equalToIgnoringWhiteSpace;
  /external/mockito/src/main/java/org/mockito/hamcrest/
MockitoHamcrest.java 5 package org.mockito.hamcrest;
7 import org.hamcrest.Matcher;
9 import org.mockito.internal.hamcrest.HamcrestArgumentMatcher;
11 import static org.mockito.internal.hamcrest.MatcherGenericTypeExtractor.genericTypeOfMatcher;
16 * Allows matching arguments with hamcrest matchers.
17 * <b>Requires</b> <a href="http://hamcrest.org/JavaHamcrest/">hamcrest</a> on classpath,
18 * Mockito <b>does not</b> depend on hamcrest!
21 * Before implementing or reusing an existing hamcrest matcher please read
24 * Mockito 2.1.0 was decoupled from Hamcrest to avoid version incompatibilitie
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
hamcrest-library-1.3.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
hamcrest-library-1.3.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
hamcrest-library-1.3.jar 

Completed in 104 milliseconds

1 2 3 45 6 7