Skip to content

Commit ec58996

Browse files
committed
style(SeriesInfoExtractorServiceImplTest): group test cases.
1 parent fcd5934 commit ec58996

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/groovy/ru/mystamps/web/feature/series/importing/SeriesInfoExtractorServiceImplTest.groovy

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,11 +473,13 @@ class SeriesInfoExtractorServiceImplTest extends Specification {
473473
service.extractMichelNumbers(fragment) == expected
474474
where:
475475
fragment || expected
476+
// negative cases
476477
nullOrBlank() || []
477-
'# 1-3' || [ '1', '2', '3' ]
478-
'#9997-9999' || [ '9997', '9998', '9999' ]
479478
'#9999-9997' || []
480479
'#0997-0999' || []
480+
// positive cases
481+
'# 1-3' || [ '1', '2', '3' ]
482+
'#9997-9999' || [ '9997', '9998', '9999' ]
481483
}
482484

483485
//

0 commit comments

Comments
 (0)