HomeSort by relevance Sort by last modified time
    Searched defs:hamcrest (Results 26 - 50 of 61) sorted by null

12 3

  /external/hamcrest/src/org/hamcrest/
StringDescription.java 1 package org.hamcrest;
CoreMatchers.java 2 package org.hamcrest;
13 public static <T> org.hamcrest.Matcher<T> is(org.hamcrest.Matcher<T> matcher) {
14 return org.hamcrest.core.Is.is(matcher);
23 public static <T> org.hamcrest.Matcher<T> is(T value) {
24 return org.hamcrest.core.Is.is(value);
33 public static org.hamcrest.Matcher<java.lang.Object> is(java.lang.Class<?> type) {
34 return org.hamcrest.core.Is.is(type);
40 public static <T> org.hamcrest.Matcher<T> not(org.hamcrest.Matcher<T> matcher)
    [all...]
BaseDescription.java 1 package org.hamcrest;
8 import org.hamcrest.internal.ArrayIterator;
9 import org.hamcrest.internal.SelfDescribingValueIterator;
  /external/hamcrest/src/org/hamcrest/core/
AllOf.java 1 package org.hamcrest.core;
3 import org.hamcrest.BaseMatcher;
4 import org.hamcrest.Matcher;
5 import org.hamcrest.Description;
6 import org.hamcrest.Factory;
AnyOf.java 1 package org.hamcrest.core;
3 import org.hamcrest.BaseMatcher;
4 import org.hamcrest.Matcher;
5 import org.hamcrest.Description;
6 import org.hamcrest.Factory;
Is.java 1 package org.hamcrest.core;
3 import static org.hamcrest.core.IsInstanceOf.instanceOf;
4 import static org.hamcrest.core.IsEqual.equalTo;
5 import org.hamcrest.Factory;
6 import org.hamcrest.Matcher;
7 import org.hamcrest.BaseMatcher;
8 import org.hamcrest.Description;
IsAnything.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.core;
5 import org.hamcrest.Description;
6 import org.hamcrest.Matcher;
7 import org.hamcrest.Factory;
8 import org.hamcrest.BaseMatcher;
IsInstanceOf.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.core;
5 import org.hamcrest.Description;
6 import org.hamcrest.Matcher;
7 import org.hamcrest.Factory;
8 import org.hamcrest.BaseMatcher;
IsNot.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.core;
5 import static org.hamcrest.core.IsEqual.equalTo;
6 import org.hamcrest.Description;
7 import org.hamcrest.Matcher;
8 import org.hamcrest.Factory;
9 import org.hamcrest.BaseMatcher;
IsNull.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.core;
5 import static org.hamcrest.core.IsNot.not;
6 import org.hamcrest.Description;
7 import org.hamcrest.Matcher;
8 import org.hamcrest.Factory;
9 import org.hamcrest.BaseMatcher;
IsSame.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.core;
5 import org.hamcrest.Description;
6 import org.hamcrest.Matcher;
7 import org.hamcrest.Factory;
8 import org.hamcrest.BaseMatcher;
DescribedAs.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.core;
7 import org.hamcrest.Description;
8 import org.hamcrest.Matcher;
9 import org.hamcrest.Factory;
10 import org.hamcrest.BaseMatcher;
IsEqual.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.core;
5 import org.hamcrest.Description;
6 import org.hamcrest.Matcher;
7 import org.hamcrest.Factory;
8 import org.hamcrest.BaseMatcher;
  /external/hamcrest/src/org/hamcrest/internal/
ArrayIterator.java 1 package org.hamcrest.internal;
SelfDescribingValueIterator.java 1 package org.hamcrest.internal;
5 import org.hamcrest.SelfDescribing;
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /prebuilts/devtools/tools/lib/
hamcrest-core-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 
  /external/hamcrest/library/src/org/hamcrest/collection/
IsArray.java 1 package org.hamcrest.collection;
5 import org.hamcrest.Description;
6 import org.hamcrest.Matcher;
7 import org.hamcrest.TypeSafeMatcher;
IsMapContaining.java 1 package org.hamcrest.collection;
3 import org.hamcrest.Description;
4 import org.hamcrest.Factory;
5 import org.hamcrest.Matcher;
6 import org.hamcrest.TypeSafeMatcher;
7 import org.hamcrest.core.IsAnything;
9 import static org.hamcrest.core.IsEqual.equalTo;
  /external/hamcrest/library/src/org/hamcrest/text/
IsEqualIgnoringWhiteSpace.java 1 /* Copyright (c) 2000-2006 hamcrest.org
3 package org.hamcrest.text;
5 import org.hamcrest.Description;
6 import org.hamcrest.Matcher;
7 import org.hamcrest.Factory;
8 import org.hamcrest.TypeSafeMatcher;
  /external/hamcrest/library/src/org/hamcrest/xml/
HasXPath.java 1 package org.hamcrest.xml;
3 import org.hamcrest.Description;
4 import org.hamcrest.Factory;
5 import org.hamcrest.Matcher;
6 import org.hamcrest.TypeSafeMatcher;
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar 
  /external/hamcrest/library/src/org/hamcrest/
Matchers.java 2 package org.hamcrest;
13 public static <T> org.hamcrest.Matcher<T> is(org.hamcrest.Matcher<T> matcher) {
14 return org.hamcrest.core.Is.is(matcher);
23 public static <T> org.hamcrest.Matcher<T> is(T value) {
24 return org.hamcrest.core.Is.is(value);
33 public static org.hamcrest.Matcher<java.lang.Object> is(java.lang.Class<?> type) {
34 return org.hamcrest.core.Is.is(type);
40 public static <T> org.hamcrest.Matcher<T> not(org.hamcrest.Matcher<T> matcher)
    [all...]

Completed in 133 milliseconds

12 3