You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/groovy/ru/mystamps/web/service/SeriesServiceImplTest.groovy
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -232,7 +232,7 @@ class SeriesServiceImplTest extends Specification {
232
232
'UnnecessaryReturnKeyword',
233
233
'LineLength',
234
234
])
235
-
def"add() should pass michel price and currency to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
235
+
def"add() should pass michel price (#expectedPrice) and currency (#expectedCurrency) to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
236
236
given:
237
237
form.setMichelPrice(expectedPrice)
238
238
when:
@@ -255,7 +255,7 @@ class SeriesServiceImplTest extends Specification {
255
255
'LineLength',
256
256
'UnnecessaryReturnKeyword',
257
257
])
258
-
def"add() should pass scott price and currency to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
258
+
def"add() should pass scott price (#expectedPrice) and currency (#expectedCurrency) to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
259
259
given:
260
260
form.setScottPrice(expectedPrice)
261
261
when:
@@ -278,7 +278,7 @@ class SeriesServiceImplTest extends Specification {
278
278
'LineLength',
279
279
'UnnecessaryReturnKeyword',
280
280
])
281
-
def"add() should pass yvert price and currency to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
281
+
def"add() should pass yvert price (#expectedPrice) and currency (#expectedCurrency) to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
282
282
given:
283
283
form.setYvertPrice(expectedPrice)
284
284
when:
@@ -301,7 +301,7 @@ class SeriesServiceImplTest extends Specification {
301
301
'LineLength',
302
302
'UnnecessaryReturnKeyword',
303
303
])
304
-
def"add() should pass gibbons price and currency to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
304
+
def"add() should pass gibbons price (#expectedPrice) and currency (#expectedCurrency) to series dao"(BigDecimal expectedPrice, String expectedCurrency) {
305
305
given:
306
306
form.setGibbonsPrice(expectedPrice)
307
307
when:
@@ -793,7 +793,7 @@ class SeriesServiceImplTest extends Specification {
0 commit comments