@@ -35,13 +35,13 @@ void setUp() {
3535 @ Test
3636 void split_noTests () {
3737 final var splits = splitTests (Set .of (), 1 , FormatOption .LIST );
38- assertThat (splits ).hasSize ( 1 ). containsExactly (List .of ());
38+ assertThat (splits ).containsExactly (List .of ());
3939 }
4040
4141 @ Test
4242 void split_withoutTiming_withOneSplit () {
4343 final var splits = splitTests (testCasesWithoutTiming , 1 , FormatOption .LIST );
44- assertThat (splits ).hasSize ( 1 ). containsExactly ( //
44+ assertThat (splits ).containsExactly ( //
4545 List .of ("de.donnerbart.example.FastTest" ,
4646 "de.donnerbart.example.NoTimingOneTest" ,
4747 "de.donnerbart.example.NoTimingTwoTest" ,
@@ -52,7 +52,7 @@ void split_withoutTiming_withOneSplit() {
5252 @ Test
5353 void split_withoutTiming_withTwoSplits () {
5454 final var splits = splitTests (testCasesWithoutTiming , 2 , FormatOption .LIST );
55- assertThat (splits ).hasSize ( 2 ). containsExactly ( //
55+ assertThat (splits ).containsExactly ( //
5656 List .of ("de.donnerbart.example.FastTest" ,
5757 "de.donnerbart.example.NoTimingTwoTest" ,
5858 "de.donnerbart.example.SlowestTest" ),
@@ -62,7 +62,7 @@ void split_withoutTiming_withTwoSplits() {
6262 @ Test
6363 void split_withoutTiming_withThreeSplits () {
6464 final var splits = splitTests (testCasesWithoutTiming , 3 , FormatOption .LIST );
65- assertThat (splits ).hasSize ( 3 ). containsExactly ( //
65+ assertThat (splits ).containsExactly ( //
6666 List .of ("de.donnerbart.example.FastTest" , "de.donnerbart.example.SlowTest" ),
6767 List .of ("de.donnerbart.example.NoTimingOneTest" , "de.donnerbart.example.SlowestTest" ),
6868 List .of ("de.donnerbart.example.NoTimingTwoTest" ));
@@ -71,7 +71,7 @@ void split_withoutTiming_withThreeSplits() {
7171 @ Test
7272 void split_withoutTiming_withThreeSplits_withGradleFormat () {
7373 final var splits = splitTests (testCasesWithoutTiming , 3 , FormatOption .GRADLE );
74- assertThat (splits ).hasSize ( 3 ). containsExactly ( //
74+ assertThat (splits ).containsExactly ( //
7575 List .of ("--tests de.donnerbart.example.FastTest" , "--tests de.donnerbart.example.SlowTest" ),
7676 List .of ("--tests de.donnerbart.example.NoTimingOneTest" , "--tests de.donnerbart.example.SlowestTest" ),
7777 List .of ("--tests de.donnerbart.example.NoTimingTwoTest" ));
@@ -80,7 +80,7 @@ void split_withoutTiming_withThreeSplits_withGradleFormat() {
8080 @ Test
8181 void split_withJUnit_withOneSplit () {
8282 final var splits = splitTests (testCasesWithTiming , 1 , FormatOption .LIST );
83- assertThat (splits ).hasSize ( 1 ). containsExactly ( //
83+ assertThat (splits ).containsExactly ( //
8484 List .of ("de.donnerbart.example.SlowestTest" ,
8585 "de.donnerbart.example.SlowTest" ,
8686 "de.donnerbart.example.FastTest" ,
@@ -91,7 +91,7 @@ void split_withJUnit_withOneSplit() {
9191 @ Test
9292 void split_withJUnit_withTwoSplits () {
9393 final var splits = splitTests (testCasesWithTiming , 2 , FormatOption .LIST );
94- assertThat (splits ).hasSize ( 2 ). containsExactly ( //
94+ assertThat (splits ).containsExactly ( //
9595 List .of ("de.donnerbart.example.SlowestTest" ),
9696 List .of ("de.donnerbart.example.SlowTest" ,
9797 "de.donnerbart.example.FastTest" ,
@@ -102,7 +102,7 @@ void split_withJUnit_withTwoSplits() {
102102 @ Test
103103 void split_withJUnit_withThreeSplits () {
104104 final var splits = splitTests (testCasesWithTiming , 3 , FormatOption .LIST );
105- assertThat (splits ).hasSize ( 3 ). containsExactly ( //
105+ assertThat (splits ).containsExactly ( //
106106 List .of ("de.donnerbart.example.SlowestTest" ),
107107 List .of ("de.donnerbart.example.SlowTest" ),
108108 List .of ("de.donnerbart.example.FastTest" ,
@@ -113,7 +113,7 @@ void split_withJUnit_withThreeSplits() {
113113 @ Test
114114 void split_withJUnit_withFourSplits () {
115115 final var splits = splitTests (testCasesWithTiming , 4 , FormatOption .LIST );
116- assertThat (splits ).hasSize ( 4 ). containsExactly ( //
116+ assertThat (splits ).containsExactly ( //
117117 List .of ("de.donnerbart.example.SlowestTest" ),
118118 List .of ("de.donnerbart.example.SlowTest" ),
119119 List .of ("de.donnerbart.example.FastTest" ),
@@ -124,7 +124,7 @@ void split_withJUnit_withFourSplits() {
124124 void split_withJUnit_withAverageTestTime_withOneSplit () {
125125 updateNoTimingTests (testCasesWithTiming , 56.0723d );
126126 final var splits = splitTests (testCasesWithTiming , 1 , FormatOption .LIST );
127- assertThat (splits ).hasSize ( 1 ). containsExactly ( //
127+ assertThat (splits ).containsExactly ( //
128128 List .of ("de.donnerbart.example.SlowestTest" ,
129129 "de.donnerbart.example.NoTimingOneTest" ,
130130 "de.donnerbart.example.NoTimingTwoTest" ,
@@ -136,7 +136,7 @@ void split_withJUnit_withAverageTestTime_withOneSplit() {
136136 void split_withJUnit_withAverageTestTime_withTwoSplits () {
137137 updateNoTimingTests (testCasesWithTiming , 56.0723d );
138138 final var splits = splitTests (testCasesWithTiming , 2 , FormatOption .LIST );
139- assertThat (splits ).hasSize ( 2 ). containsExactly ( //
139+ assertThat (splits ).containsExactly ( //
140140 List .of ("de.donnerbart.example.SlowestTest" ),
141141 List .of ("de.donnerbart.example.NoTimingOneTest" ,
142142 "de.donnerbart.example.NoTimingTwoTest" ,
@@ -148,7 +148,7 @@ void split_withJUnit_withAverageTestTime_withTwoSplits() {
148148 void split_withJUnit_withAverageTestTime_withThreeSplits () {
149149 updateNoTimingTests (testCasesWithTiming , 56.0723d );
150150 final var splits = splitTests (testCasesWithTiming , 3 , FormatOption .LIST );
151- assertThat (splits ).hasSize ( 3 ). containsExactly ( //
151+ assertThat (splits ).containsExactly ( //
152152 List .of ("de.donnerbart.example.SlowestTest" ),
153153 List .of ("de.donnerbart.example.NoTimingOneTest" , "de.donnerbart.example.SlowTest" ),
154154 List .of ("de.donnerbart.example.NoTimingTwoTest" , "de.donnerbart.example.FastTest" ));
@@ -158,7 +158,7 @@ void split_withJUnit_withAverageTestTime_withThreeSplits() {
158158 void split_withJUnit_withAverageTestTime_withFourSplits () {
159159 updateNoTimingTests (testCasesWithTiming , 56.0723d );
160160 final var splits = splitTests (testCasesWithTiming , 4 , FormatOption .LIST );
161- assertThat (splits ).hasSize ( 4 ). containsExactly ( //
161+ assertThat (splits ).containsExactly ( //
162162 List .of ("de.donnerbart.example.SlowestTest" ),
163163 List .of ("de.donnerbart.example.NoTimingOneTest" ),
164164 List .of ("de.donnerbart.example.NoTimingTwoTest" ),
@@ -169,7 +169,7 @@ void split_withJUnit_withAverageTestTime_withFourSplits() {
169169 void split_withJUnit_withMinTestTime_withOneSplit () {
170170 updateNoTimingTests (testCasesWithTiming , 2.374d );
171171 final var splits = splitTests (testCasesWithTiming , 1 , FormatOption .LIST );
172- assertThat (splits ).hasSize ( 1 ). containsExactly ( //
172+ assertThat (splits ).containsExactly ( //
173173 List .of ("de.donnerbart.example.SlowestTest" ,
174174 "de.donnerbart.example.SlowTest" ,
175175 "de.donnerbart.example.FastTest" ,
@@ -181,7 +181,7 @@ void split_withJUnit_withMinTestTime_withOneSplit() {
181181 void split_withJUnit_withMinTestTime_withTwoSplits () {
182182 updateNoTimingTests (testCasesWithTiming , 2.374d );
183183 final var splits = splitTests (testCasesWithTiming , 2 , FormatOption .LIST );
184- assertThat (splits ).hasSize ( 2 ). containsExactly ( //
184+ assertThat (splits ).containsExactly ( //
185185 List .of ("de.donnerbart.example.SlowestTest" ),
186186 List .of ("de.donnerbart.example.SlowTest" ,
187187 "de.donnerbart.example.FastTest" ,
@@ -193,7 +193,7 @@ void split_withJUnit_withMinTestTime_withTwoSplits() {
193193 void split_withJUnit_withMinTestTime_withThreeSplits () {
194194 updateNoTimingTests (testCasesWithTiming , 2.374d );
195195 final var splits = splitTests (testCasesWithTiming , 3 , FormatOption .LIST );
196- assertThat (splits ).hasSize ( 3 ). containsExactly ( //
196+ assertThat (splits ).containsExactly ( //
197197 List .of ("de.donnerbart.example.SlowestTest" ),
198198 List .of ("de.donnerbart.example.SlowTest" ),
199199 List .of ("de.donnerbart.example.FastTest" ,
@@ -205,7 +205,7 @@ void split_withJUnit_withMinTestTime_withThreeSplits() {
205205 void split_withJUnit_withMinTestTime_withFourSplits () {
206206 updateNoTimingTests (testCasesWithTiming , 2.374d );
207207 final var splits = splitTests (testCasesWithTiming , 4 , FormatOption .LIST );
208- assertThat (splits ).hasSize ( 4 ). containsExactly ( //
208+ assertThat (splits ).containsExactly ( //
209209 List .of ("de.donnerbart.example.SlowestTest" ),
210210 List .of ("de.donnerbart.example.SlowTest" ),
211211 List .of ("de.donnerbart.example.FastTest" , "de.donnerbart.example.NoTimingTwoTest" ),
@@ -216,7 +216,7 @@ void split_withJUnit_withMinTestTime_withFourSplits() {
216216 void split_withJUnit_withMaxTestTime_withOneSplit () {
217217 updateNoTimingTests (testCasesWithTiming , 153.457d );
218218 final var splits = splitTests (testCasesWithTiming , 1 , FormatOption .LIST );
219- assertThat (splits ).hasSize ( 1 ). containsExactly ( //
219+ assertThat (splits ).containsExactly ( //
220220 List .of ("de.donnerbart.example.NoTimingOneTest" ,
221221 "de.donnerbart.example.NoTimingTwoTest" ,
222222 "de.donnerbart.example.SlowestTest" ,
@@ -228,7 +228,7 @@ void split_withJUnit_withMaxTestTime_withOneSplit() {
228228 void split_withJUnit_withMaxTestTime_withTwoSplits () {
229229 updateNoTimingTests (testCasesWithTiming , 153.457d );
230230 final var splits = splitTests (testCasesWithTiming , 2 , FormatOption .LIST );
231- assertThat (splits ).hasSize ( 2 ). containsExactly ( //
231+ assertThat (splits ).containsExactly ( //
232232 List .of ("de.donnerbart.example.NoTimingOneTest" , "de.donnerbart.example.SlowestTest" ),
233233 List .of ("de.donnerbart.example.NoTimingTwoTest" ,
234234 "de.donnerbart.example.SlowTest" ,
@@ -239,7 +239,7 @@ void split_withJUnit_withMaxTestTime_withTwoSplits() {
239239 void split_withJUnit_withMaxTestTime_withThreeSplits () {
240240 updateNoTimingTests (testCasesWithTiming , 153.457d );
241241 final var splits = splitTests (testCasesWithTiming , 3 , FormatOption .LIST );
242- assertThat (splits ).hasSize ( 3 ). containsExactly ( //
242+ assertThat (splits ).containsExactly ( //
243243 List .of ("de.donnerbart.example.NoTimingOneTest" , "de.donnerbart.example.SlowTest" ),
244244 List .of ("de.donnerbart.example.NoTimingTwoTest" , "de.donnerbart.example.FastTest" ),
245245 List .of ("de.donnerbart.example.SlowestTest" ));
@@ -249,7 +249,7 @@ void split_withJUnit_withMaxTestTime_withThreeSplits() {
249249 void split_withJUnit_withMaxTestTime_withFourSplits () {
250250 updateNoTimingTests (testCasesWithTiming , 153.457d );
251251 final var splits = splitTests (testCasesWithTiming , 4 , FormatOption .LIST );
252- assertThat (splits ).hasSize ( 4 ). containsExactly ( //
252+ assertThat (splits ).containsExactly ( //
253253 List .of ("de.donnerbart.example.NoTimingOneTest" ),
254254 List .of ("de.donnerbart.example.NoTimingTwoTest" ),
255255 List .of ("de.donnerbart.example.SlowestTest" ),
0 commit comments