We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2378aad commit 2f23265Copy full SHA for 2f23265
src/test/groovy/ru/mystamps/web/service/SeriesInfoExtractorServiceImplTest.groovy
@@ -329,9 +329,13 @@ class SeriesInfoExtractorServiceImplTest extends Specification {
329
service.extractQuantity(nullOrBlank()) == null
330
}
331
332
- def 'extractQuantity() should return null for invalid quantity'() {
+ @Unroll
333
+ def 'extractQuantity() should return null for invalid quantity (#fragment)'(String fragment) {
334
expect:
- service.extractQuantity('0 марок') == null
335
+ service.extractQuantity(fragment) == null
336
+ where:
337
+ fragment | _
338
+ '0 марок' | _
339
340
341
@Unroll
0 commit comments