diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-10 11:12:36 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-10 11:12:36 +0200 |
commit | 993f49f30c5731197957300e69e9881c6ee1e970 (patch) | |
tree | 3fd6db157681725adbd8b5e8fadf3a4c332e47f0 /sonar-core/src | |
parent | 0e22ff26bbb34b098f1fa738abaf600473ab092f (diff) | |
download | sonarqube-993f49f30c5731197957300e69e9881c6ee1e970.tar.gz sonarqube-993f49f30c5731197957300e69e9881c6ee1e970.zip |
SONAR-4396 The email notification about 'New issues' should provide a link whose parameter 'createdAfter' must define a time and not only a date
Diffstat (limited to 'sonar-core/src')
-rw-r--r-- | sonar-core/src/test/java/org/sonar/core/issue/IssueNotificationsTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-core/src/test/java/org/sonar/core/issue/IssueNotificationsTest.java b/sonar-core/src/test/java/org/sonar/core/issue/IssueNotificationsTest.java index 7f14933a985..9f85faa3be9 100644 --- a/sonar-core/src/test/java/org/sonar/core/issue/IssueNotificationsTest.java +++ b/sonar-core/src/test/java/org/sonar/core/issue/IssueNotificationsTest.java @@ -57,7 +57,7 @@ public class IssueNotificationsTest { } @Test - public void sendNewIssues() throws Exception { + public void should_send_new_issues() throws Exception { Date date = DateUtils.parseDateTime("2013-05-18T00:00:03+0200"); Project project = new Project("struts").setAnalysisDate(date); Notification notification = issueNotifications.sendNewIssues(project, 42); @@ -68,7 +68,7 @@ public class IssueNotificationsTest { } @Test - public void sendChanges() throws Exception { + public void should_send_changes() throws Exception { IssueChangeContext context = IssueChangeContext.createScan(new Date()); DefaultIssue issue = new DefaultIssue() .setMessage("the message") @@ -93,7 +93,7 @@ public class IssueNotificationsTest { } @Test - public void sendChangesWithComment() throws Exception { + public void should_send_changes_with_comment() throws Exception { IssueChangeContext context = IssueChangeContext.createScan(new Date()); DefaultIssue issue = new DefaultIssue() .setMessage("the message") |