77
77
import static org .assertj .core .api .InstanceOfAssertFactories .LONG_PREDICATE ;
78
78
import static org .assertj .core .api .InstanceOfAssertFactories .LONG_STREAM ;
79
79
import static org .assertj .core .api .InstanceOfAssertFactories .MAP ;
80
+ import static org .assertj .core .api .InstanceOfAssertFactories .MATCHER ;
80
81
import static org .assertj .core .api .InstanceOfAssertFactories .OFFSET_DATE_TIME ;
81
82
import static org .assertj .core .api .InstanceOfAssertFactories .OFFSET_TIME ;
82
83
import static org .assertj .core .api .InstanceOfAssertFactories .OPTIONAL ;
99
100
import static org .assertj .core .api .InstanceOfAssertFactories .URL_TYPE ;
100
101
import static org .assertj .core .api .InstanceOfAssertFactories .ZONED_DATE_TIME ;
101
102
import static org .assertj .core .api .InstanceOfAssertFactories .array ;
103
+ import static org .assertj .core .api .InstanceOfAssertFactories .array2D ;
102
104
import static org .assertj .core .api .InstanceOfAssertFactories .atomicIntegerFieldUpdater ;
103
105
import static org .assertj .core .api .InstanceOfAssertFactories .atomicLongFieldUpdater ;
104
106
import static org .assertj .core .api .InstanceOfAssertFactories .atomicMarkableReference ;
121
123
import static org .assertj .core .api .InstanceOfAssertFactories .throwable ;
122
124
import static org .assertj .core .api .InstanceOfAssertFactories .type ;
123
125
import static org .assertj .core .test .Maps .mapOf ;
124
- import static org .assertj .core .util .Lists .list ;
125
126
import static org .mockito .Mockito .mock ;
126
127
127
128
import java .io .ByteArrayInputStream ;
168
169
import java .util .function .IntPredicate ;
169
170
import java .util .function .LongPredicate ;
170
171
import java .util .function .Predicate ;
172
+ import java .util .regex .Pattern ;
171
173
import java .util .stream .DoubleStream ;
172
174
import java .util .stream .IntStream ;
173
175
import java .util .stream .LongStream ;
174
176
import java .util .stream .Stream ;
175
177
178
+ import org .assertj .core .util .Lists ;
176
179
import org .assertj .core .util .Strings ;
177
180
import org .junit .jupiter .api .Test ;
178
181
@@ -321,6 +324,16 @@ void optional_long_factory_should_allow_optional_long_assertions() {
321
324
result .isPresent ();
322
325
}
323
326
327
+ @ Test
328
+ void matcher_factory_should_allow_matcher_assertions () {
329
+ // GIVEN
330
+ Object value = Pattern .compile ("a*" ).matcher ("aaa" );
331
+ // WHEN
332
+ MatcherAssert result = assertThat (value ).asInstanceOf (MATCHER );
333
+ // THEN
334
+ result .matches ();
335
+ }
336
+
324
337
@ Test
325
338
void big_decimal_factory_should_allow_big_decimal_assertions () {
326
339
// GIVEN
@@ -641,6 +654,16 @@ void array_factory_should_allow_array_assertions() {
641
654
result .containsExactly (0 , "" );
642
655
}
643
656
657
+ @ Test
658
+ void array_typed_factory_should_allow_array_typed_assertions () {
659
+ // GIVEN
660
+ Object value = new Integer [] { 0 , 1 };
661
+ // WHEN
662
+ ObjectArrayAssert <Integer > result = assertThat (value ).asInstanceOf (array (Integer [].class ));
663
+ // THEN
664
+ result .containsExactly (0 , 1 );
665
+ }
666
+
644
667
@ Test
645
668
void array_2d_factory_should_allow_2d_array_assertions () {
646
669
// GIVEN
@@ -652,13 +675,13 @@ void array_2d_factory_should_allow_2d_array_assertions() {
652
675
}
653
676
654
677
@ Test
655
- void array_typed_factory_should_allow_array_typed_assertions () {
678
+ void array_2d_typed_factory_should_allow_2d_array_typed_assertions () {
656
679
// GIVEN
657
- Object value = new Integer [] { 0 , 1 };
680
+ Object value = new Integer [][] { { 0 , 1 }, { 2 , 3 } };
658
681
// WHEN
659
- ObjectArrayAssert <Integer > result = assertThat (value ).asInstanceOf (array (Integer [].class ));
682
+ Object2DArrayAssert <Integer > result = assertThat (value ).asInstanceOf (array2D (Integer [] [].class ));
660
683
// THEN
661
- result .containsExactly ( 0 , 1 );
684
+ result .hasDimensions ( 2 , 2 );
662
685
}
663
686
664
687
@ Test
@@ -1055,7 +1078,7 @@ void string_factory_should_allow_string_assertions() {
1055
1078
@ Test
1056
1079
void iterable_factory_should_allow_iterable_assertions () {
1057
1080
// GIVEN
1058
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1081
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1059
1082
// WHEN
1060
1083
IterableAssert <Object > result = assertThat (value ).asInstanceOf (ITERABLE );
1061
1084
// THEN
@@ -1065,7 +1088,7 @@ void iterable_factory_should_allow_iterable_assertions() {
1065
1088
@ Test
1066
1089
void iterable_typed_factory_should_allow_iterable_typed_assertions () {
1067
1090
// GIVEN
1068
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1091
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1069
1092
// WHEN
1070
1093
IterableAssert <String > result = assertThat (value ).asInstanceOf (iterable (String .class ));
1071
1094
// THEN
@@ -1075,7 +1098,7 @@ void iterable_typed_factory_should_allow_iterable_typed_assertions() {
1075
1098
@ Test
1076
1099
void iterator_factory_should_allow_iterator_assertions () {
1077
1100
// GIVEN
1078
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" ).iterator ();
1101
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" ).iterator ();
1079
1102
// WHEN
1080
1103
IteratorAssert <Object > result = assertThat (value ).asInstanceOf (ITERATOR );
1081
1104
// THEN
@@ -1085,7 +1108,7 @@ void iterator_factory_should_allow_iterator_assertions() {
1085
1108
@ Test
1086
1109
void iterator_typed_factory_should_allow_iterator_typed_assertions () {
1087
1110
// GIVEN
1088
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" ).iterator ();
1111
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" ).iterator ();
1089
1112
// WHEN
1090
1113
IteratorAssert <String > result = assertThat (value ).asInstanceOf (iterator (String .class ));
1091
1114
// THEN
@@ -1095,7 +1118,7 @@ void iterator_typed_factory_should_allow_iterator_typed_assertions() {
1095
1118
@ Test
1096
1119
void collection_factory_should_allow_collection_assertions () {
1097
1120
// GIVEN
1098
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1121
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1099
1122
// WHEN
1100
1123
AbstractCollectionAssert <?, Collection <?>, Object , ObjectAssert <Object >> result = assertThat (value ).asInstanceOf (COLLECTION );
1101
1124
// THEN
@@ -1105,7 +1128,7 @@ void collection_factory_should_allow_collection_assertions() {
1105
1128
@ Test
1106
1129
void collection_typed_factory_should_allow_collection_typed_assertions () {
1107
1130
// GIVEN
1108
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1131
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1109
1132
// WHEN
1110
1133
AbstractCollectionAssert <?, Collection <? extends String >, String , ObjectAssert <String >> result = assertThat (value ).asInstanceOf (collection (String .class ));
1111
1134
// THEN
@@ -1115,7 +1138,7 @@ void collection_typed_factory_should_allow_collection_typed_assertions() {
1115
1138
@ Test
1116
1139
void list_factory_should_allow_list_assertions () {
1117
1140
// GIVEN
1118
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1141
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1119
1142
// WHEN
1120
1143
ListAssert <Object > result = assertThat (value ).asInstanceOf (LIST );
1121
1144
// THEN
@@ -1125,7 +1148,7 @@ void list_factory_should_allow_list_assertions() {
1125
1148
@ Test
1126
1149
void list_typed_factory_should_allow_typed_list_assertions () {
1127
1150
// GIVEN
1128
- Object value = list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1151
+ Object value = Lists . list ("Homer" , "Marge" , "Bart" , "Lisa" , "Maggie" );
1129
1152
// WHEN
1130
1153
ListAssert <String > result = assertThat (value ).asInstanceOf (list (String .class ));
1131
1154
// THEN
0 commit comments