Skip to content

Commit 0a876aa

Browse files
committed
SiteServiceImplTest: updated test cases names.
Should be in 71633ad commit. No functional changes.
1 parent 544b581 commit 0a876aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class SiteServiceImplTest extends Specification {
115115
null | _
116116
}
117117

118-
def "logAboutAbsentPage() should pass null to dao for unknown user"() {
118+
def "logAboutAbsentPage() should pass null to dao for unknown user id"() {
119119
when:
120120
service.logAboutAbsentPage(TEST_PAGE, TEST_METHOD, null, null, null, null)
121121
then:
@@ -125,7 +125,7 @@ class SiteServiceImplTest extends Specification {
125125
})
126126
}
127127

128-
def "logAboutAbsentPage() should pass user to dao"() {
128+
def "logAboutAbsentPage() should pass user id to dao"() {
129129
given:
130130
Integer expectedUserId = 20
131131
when:
@@ -318,7 +318,7 @@ class SiteServiceImplTest extends Specification {
318318
null | _
319319
}
320320

321-
def "logAboutFailedAuthentication() should pass null to dao for unknown user"() {
321+
def "logAboutFailedAuthentication() should pass null to dao for unknown user id"() {
322322
when:
323323
service.logAboutFailedAuthentication(TEST_PAGE, TEST_METHOD, null, null, null, null, null)
324324
then:
@@ -328,7 +328,7 @@ class SiteServiceImplTest extends Specification {
328328
})
329329
}
330330

331-
def "logAboutFailedAuthentication() should pass user to dao"() {
331+
def "logAboutFailedAuthentication() should pass user id to dao"() {
332332
given:
333333
Integer expectedUserId = 30
334334
when:

0 commit comments

Comments
 (0)