diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-06-22 12:58:16 +0400 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-06-23 14:33:05 +0400 |
commit | 2e69ab5a682768568f24c037480cd7a18d832459 (patch) | |
tree | 55e998575e9ff417d9b7cbb60a20c6821e794fe6 /plugins/sonar-dbcleaner-plugin | |
parent | 9be8dbadcb5f991b6a9a507136efe61e60e9bc4d (diff) | |
download | sonarqube-2e69ab5a682768568f24c037480cd7a18d832459.tar.gz sonarqube-2e69ab5a682768568f24c037480cd7a18d832459.zip |
SONAR-2453 Update the way "false-positive" reviews are managed
* The column REVIEWS.FALSE-POSITIVE should be renamed to
REVIEWS.RESOLUTION, the value of this column should be FALSE-POSITIVE
for false-positive reviews and FIXED for other RESOLVED reviews.
* The status of a false-positive reviews should be RESOLVED.
Diffstat (limited to 'plugins/sonar-dbcleaner-plugin')
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews-result.xml b/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews-result.xml index 50fc18b74c4..fea5c7d00e3 100644 --- a/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews-result.xml +++ b/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews-result.xml @@ -16,7 +16,7 @@ rule_failure_permanent_id="1" resource_id="555" project_id="1" - created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" false_positive="[null]" severity="[null]" resource_line="[null]"/> + created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" resolution="[null]" severity="[null]" resource_line="[null]"/> <!-- Following must have been deleted <reviews @@ -25,7 +25,7 @@ rule_failure_permanent_id="2" resource_id="666" project_id="2" - created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" false_positive="[null]" severity="[null]" resource_line="[null]"/> + created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" resolution="[null]" severity="[null]" resource_line="[null]"/> --> <review_comments diff --git a/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews.xml b/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews.xml index 6408b5a1947..dca003915bd 100644 --- a/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews.xml +++ b/plugins/sonar-dbcleaner-plugin/src/test/resources/org/sonar/plugins/dbcleaner/purges/PurgeOrphanReviewsTest/purgeOrphanReviews.xml @@ -16,14 +16,14 @@ rule_failure_permanent_id="1" resource_id="555" project_id="1" - created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" false_positive="[null]" severity="[null]" resource_line="[null]"/> + created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" resolution="[null]" severity="[null]" resource_line="[null]"/> <reviews id="2" status="CLOSED" rule_failure_permanent_id="2" resource_id="666" project_id="2" - created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" false_positive="[null]" severity="[null]" resource_line="[null]"/> + created_at="[null]" updated_at="[null]" user_id="[null]" assignee_id="[null]" title="[null]" resolution="[null]" severity="[null]" resource_line="[null]"/> <review_comments id="1" |