diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-05-28 14:31:25 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-05-28 14:31:25 +0200 |
commit | a5f8fc9faae35079ea8db4a819304dd7b5162e35 (patch) | |
tree | 45a0f91d287a12bffcf09e154460f06d9d654102 /sonar-core/src | |
parent | 782be50be1a71d8c859d52e8d85f1e1e81694d94 (diff) | |
download | sonarqube-a5f8fc9faae35079ea8db4a819304dd7b5162e35.tar.gz sonarqube-a5f8fc9faae35079ea8db4a819304dd7b5162e35.zip |
DEVACT-103 Added missing test resources
Diffstat (limited to 'sonar-core/src')
4 files changed, 20 insertions, 0 deletions
diff --git a/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthorAndDeveloper-result.xml b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthorAndDeveloper-result.xml new file mode 100644 index 00000000000..8dd5afd2927 --- /dev/null +++ b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthorAndDeveloper-result.xml @@ -0,0 +1,4 @@ +<dataset> + <projects id="1" name="developer@company.net" qualifier="DEV" /> + <authors id="1" person_id="1" login="developer@company.net" /> +</dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthorAndDeveloper.xml b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthorAndDeveloper.xml new file mode 100644 index 00000000000..fb0854fccbe --- /dev/null +++ b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldInsertAuthorAndDeveloper.xml @@ -0,0 +1,2 @@ +<dataset> +</dataset> diff --git a/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsAndDevelopersDuplication-result.xml b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsAndDevelopersDuplication-result.xml new file mode 100644 index 00000000000..05621c56dfa --- /dev/null +++ b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsAndDevelopersDuplication-result.xml @@ -0,0 +1,7 @@ +<dataset> + + <projects id="1" name="developer@company.net" qualifier="DEV" /> + + <authors id="1" person_id="1" login="developer@company.net" /> + +</dataset>
\ No newline at end of file diff --git a/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsAndDevelopersDuplication.xml b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsAndDevelopersDuplication.xml new file mode 100644 index 00000000000..05621c56dfa --- /dev/null +++ b/sonar-core/src/test/resources/org/sonar/core/user/AuthorDaoTest/shouldPreventAuthorsAndDevelopersDuplication.xml @@ -0,0 +1,7 @@ +<dataset> + + <projects id="1" name="developer@company.net" qualifier="DEV" /> + + <authors id="1" person_id="1" login="developer@company.net" /> + +</dataset>
\ No newline at end of file |