@@ -64,13 +64,13 @@ private static Consumer<Map<String, File>> assertWithValidationWithoutJsonNullab
6464 .withType ("List<@Max(10) Integer>" )
6565 .toType ()
6666 .hasProperty ("numberMinMax" )
67- .withType ("List<@DecimalMin(value = \" 1\" , inclusive = false ) @DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
67+ .withType ("List<@DecimalMin(value = \" 1\" , inclusive = true ) @DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
6868 .toType ()
6969 .hasProperty ("numberMin" )
70- .withType ("List<@DecimalMin(value = \" 1\" , inclusive = false ) BigDecimal>" )
70+ .withType ("List<@DecimalMin(value = \" 1\" , inclusive = true ) BigDecimal>" )
7171 .toType ()
7272 .hasProperty ("numberMax" )
73- .withType ("List<@DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
73+ .withType ("List<@DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
7474 .toType ()
7575 .hasProperty ("stringPatternWithMin" )
7676 .withType ("Set<@Pattern(regexp = \" ^\\ \\ d{3}-\\ \\ d{2}-\\ \\ d{4}$\" ) @Size(min = 10) String>" )
@@ -88,7 +88,7 @@ private static Consumer<Map<String, File>> assertWithValidationWithoutJsonNullab
8888 .withType ("Set<@Size(max = 1) String>" )
8989 .toType ()
9090 .hasProperty ("stringNumbers" )
91- .withType ("Set<@DecimalMin(value = \" 1\" , inclusive = false ) @DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
91+ .withType ("Set<@DecimalMin(value = \" 1\" , inclusive = true ) @DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
9292 .toType ()
9393 .hasProperty ("intMinMaxNullable" )
9494 .withType ("List<@Min(1) @Max(10) Integer>" )
@@ -100,13 +100,13 @@ private static Consumer<Map<String, File>> assertWithValidationWithoutJsonNullab
100100 .withType ("List<@Max(10) Integer>" )
101101 .toType ()
102102 .hasProperty ("numberMinMaxNullable" )
103- .withType ("List<@DecimalMin(value = \" 1\" , inclusive = false ) @DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
103+ .withType ("List<@DecimalMin(value = \" 1\" , inclusive = true ) @DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
104104 .toType ()
105105 .hasProperty ("numberMinNullable" )
106- .withType ("List<@DecimalMin(value = \" 1\" , inclusive = false ) BigDecimal>" )
106+ .withType ("List<@DecimalMin(value = \" 1\" , inclusive = true ) BigDecimal>" )
107107 .toType ()
108108 .hasProperty ("numberMaxNullable" )
109- .withType ("List<@DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
109+ .withType ("List<@DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
110110 .toType ();
111111 }
112112
@@ -138,13 +138,13 @@ private static Consumer<Map<String, File>> assertWithValidationWithJsonNullable(
138138 .withType ("List<@Max(10) Integer>" )
139139 .toType ()
140140 .hasProperty ("numberMinMax" )
141- .withType ("List<@DecimalMin(value = \" 1\" , inclusive = false ) @DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
141+ .withType ("List<@DecimalMin(value = \" 1\" , inclusive = true ) @DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
142142 .toType ()
143143 .hasProperty ("numberMin" )
144- .withType ("List<@DecimalMin(value = \" 1\" , inclusive = false ) BigDecimal>" )
144+ .withType ("List<@DecimalMin(value = \" 1\" , inclusive = true ) BigDecimal>" )
145145 .toType ()
146146 .hasProperty ("numberMax" )
147- .withType ("List<@DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
147+ .withType ("List<@DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
148148 .toType ()
149149 .hasProperty ("stringPatternWithMin" )
150150 .withType ("JsonNullable<Set<@Pattern(regexp = \" ^\\ \\ d{3}-\\ \\ d{2}-\\ \\ d{4}$\" ) @Size(min = 10) String>>" )
@@ -162,7 +162,7 @@ private static Consumer<Map<String, File>> assertWithValidationWithJsonNullable(
162162 .withType ("JsonNullable<Set<@Size(max = 1) String>>" )
163163 .toType ()
164164 .hasProperty ("stringNumbers" )
165- .withType ("Set<@DecimalMin(value = \" 1\" , inclusive = false ) @DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>" )
165+ .withType ("Set<@DecimalMin(value = \" 1\" , inclusive = true ) @DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>" )
166166 .toType ()
167167 .hasProperty ("intMinMaxNullable" )
168168 .withType ("JsonNullable<List<@Min(1) @Max(10) Integer>>" )
@@ -174,13 +174,13 @@ private static Consumer<Map<String, File>> assertWithValidationWithJsonNullable(
174174 .withType ("JsonNullable<List<@Max(10) Integer>>" )
175175 .toType ()
176176 .hasProperty ("numberMinMaxNullable" )
177- .withType ("JsonNullable<List<@DecimalMin(value = \" 1\" , inclusive = false ) @DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>>" )
177+ .withType ("JsonNullable<List<@DecimalMin(value = \" 1\" , inclusive = true ) @DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>>" )
178178 .toType ()
179179 .hasProperty ("numberMinNullable" )
180- .withType ("JsonNullable<List<@DecimalMin(value = \" 1\" , inclusive = false ) BigDecimal>>" )
180+ .withType ("JsonNullable<List<@DecimalMin(value = \" 1\" , inclusive = true ) BigDecimal>>" )
181181 .toType ()
182182 .hasProperty ("numberMaxNullable" )
183- .withType ("JsonNullable<List<@DecimalMax(value = \" 10\" , inclusive = true ) BigDecimal>>" )
183+ .withType ("JsonNullable<List<@DecimalMax(value = \" 10\" , inclusive = false ) BigDecimal>>" )
184184 .toType ();
185185 }
186186
0 commit comments