Skip to content

Commit 2b3e0b0

Browse files
committed
CollectionServiceImplTest: improv comment and method names.
Should be in 021f1c0 commmit. No functional changes.
1 parent e90a78f commit 2b3e0b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/groovy/ru/mystamps/web/service/CollectionServiceImplTest.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ class CollectionServiceImplTest extends Specification {
3232
}
3333

3434
//
35-
// Tests for findRecentlyCreated
35+
// Tests for findRecentlyCreated()
3636
//
3737

3838
@Unroll
39-
def "findRecentlyCreated should throw exception when quantity is #quantity"(Integer quantity) {
39+
def "findRecentlyCreated() should throw exception when quantity is #quantity"(Integer quantity) {
4040
when:
4141
service.findRecentlyCreated(quantity)
4242
then:
@@ -47,7 +47,7 @@ class CollectionServiceImplTest extends Specification {
4747
0 | _
4848
}
4949

50-
def "findRecentlyCreated should pass arguments to dao"() {
50+
def "findRecentlyCreated() should pass arguments to dao"() {
5151
given:
5252
int expectedQuantity = 4
5353
when:

0 commit comments

Comments
 (0)