forked from hamcrest/JavaHamcrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matchers.xml
60 lines (52 loc) · 2.61 KB
/
matchers.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<matchers>
<!-- Core -->
<factory class="org.hamcrest.core.AllOf"/>
<factory class="org.hamcrest.core.AnyOf"/>
<factory class="org.hamcrest.core.CombinableMatcher"/>
<factory class="org.hamcrest.core.DescribedAs"/>
<factory class="org.hamcrest.core.Every"/>
<factory class="org.hamcrest.core.Is"/>
<factory class="org.hamcrest.core.IsAnything"/>
<factory class="org.hamcrest.core.IsCollectionContaining"/>
<factory class="org.hamcrest.core.IsEqual"/>
<factory class="org.hamcrest.core.IsInstanceOf"/>
<factory class="org.hamcrest.core.IsNot"/>
<factory class="org.hamcrest.core.IsNull"/>
<factory class="org.hamcrest.core.IsSame"/>
<factory class="org.hamcrest.core.StringContains"/>
<factory class="org.hamcrest.core.StringStartsWith"/>
<factory class="org.hamcrest.core.StringEndsWith"/>
<!-- Collection -->
<factory class="org.hamcrest.collection.IsArray"/>
<factory class="org.hamcrest.collection.IsArrayContaining"/>
<factory class="org.hamcrest.collection.IsArrayContainingInOrder"/>
<factory class="org.hamcrest.collection.IsArrayContainingInAnyOrder"/>
<factory class="org.hamcrest.collection.IsArrayWithSize"/>
<factory class="org.hamcrest.collection.IsCollectionWithSize"/>
<factory class="org.hamcrest.collection.IsEmptyCollection"/>
<factory class="org.hamcrest.collection.IsEmptyIterable"/>
<factory class="org.hamcrest.collection.IsIterableContainingInOrder"/>
<factory class="org.hamcrest.collection.IsIterableContainingInAnyOrder"/>
<factory class="org.hamcrest.collection.IsIterableWithSize"/>
<factory class="org.hamcrest.collection.IsMapContaining"/>
<factory class="org.hamcrest.collection.IsIn"/>
<!-- Number -->
<factory class="org.hamcrest.number.IsCloseTo"/>
<factory class="org.hamcrest.number.BigDecimalCloseTo"/>
<factory class="org.hamcrest.number.OrderingComparison"/>
<!-- Text -->
<factory class="org.hamcrest.text.IsEqualIgnoringCase"/>
<factory class="org.hamcrest.text.IsEqualIgnoringWhiteSpace"/>
<factory class="org.hamcrest.text.IsEmptyString"/>
<factory class="org.hamcrest.text.StringContainsInOrder"/>
<!-- Object -->
<factory class="org.hamcrest.object.HasToString"/>
<factory class="org.hamcrest.object.IsCompatibleType"/>
<factory class="org.hamcrest.object.IsEventFrom"/>
<!-- Beans -->
<factory class="org.hamcrest.beans.HasProperty"/>
<factory class="org.hamcrest.beans.HasPropertyWithValue"/>
<factory class="org.hamcrest.beans.SamePropertyValuesAs"/>
<!-- XML -->
<factory class="org.hamcrest.xml.HasXPath"/>
</matchers>