diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-04-27 17:26:15 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-04-28 12:22:45 +0200 |
commit | e35378a7d9d058cadd1723634f4bb10ef2aabb2f (patch) | |
tree | 7b0886f0ed0ac5cd8df3de9d85fdc9ec43ccc3be /sonar-core | |
parent | e2954649262d71c92a474471dbe893446f04dfc2 (diff) | |
download | sonarqube-e35378a7d9d058cadd1723634f4bb10ef2aabb2f.tar.gz sonarqube-e35378a7d9d058cadd1723634f4bb10ef2aabb2f.zip |
several tests with the same name SONAR-6255
several tests can have the same name. a uuid is introduced to have an identifier for the test.
coverage details are aggregated for all the tests with the same name.
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/source/db/FileSourceDto.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/source/db/FileSourceDto.java b/sonar-core/src/main/java/org/sonar/core/source/db/FileSourceDto.java index 07df74fba01..af0e95b25fd 100644 --- a/sonar-core/src/main/java/org/sonar/core/source/db/FileSourceDto.java +++ b/sonar-core/src/main/java/org/sonar/core/source/db/FileSourceDto.java @@ -271,5 +271,9 @@ public class FileSourceDto { public static class Type { public static final String SOURCE = "SOURCE"; public static final String TEST = "TEST"; + + private Type() { + // utility class + } } } |