OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hamcrest
(Results
26 - 44
of
44
) sorted by null
1
2
/external/hamcrest/src/org/hamcrest/core/
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;
/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;
/external/hamcrest/src/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/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
...]
/external/owasp/sanitizer/lib/junit/
junit.jar
Completed in 421 milliseconds
1
2