aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-protocol/src/main/protobuf
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-scanner-protocol/src/main/protobuf')
-rw-r--r--sonar-scanner-protocol/src/main/protobuf/scanner_report.proto26
1 files changed, 0 insertions, 26 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
index 57f86f9a73a..92e917a65f1 100644
--- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
+++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
@@ -321,32 +321,6 @@ message SyntaxHighlightingRule {
}
}
-message Test {
- string name = 1;
- TestStatus status = 2;
- int64 duration_in_ms = 3;
- string stacktrace = 4;
- string msg = 5;
-
- enum TestStatus {
- UNSET = 0;
- OK = 1;
- FAILURE = 2;
- ERROR = 3;
- SKIPPED = 4;
- }
-}
-
-message CoverageDetail {
- string test_name = 1;
- repeated CoveredFile covered_file = 2;
-
- message CoveredFile {
- int32 file_ref = 1;
- repeated int32 covered_line = 2 [packed = true];
- }
-}
-
message AnalysisWarning {
string text = 1;
int64 timestamp = 2;