Simplify standard tests by using 1 json per case.

This commit is contained in:
boukeversteegh
2020-05-22 20:58:14 +02:00
parent dd4873dfba
commit dfa0a56b39
7 changed files with 19 additions and 14 deletions

View File

@@ -1,3 +0,0 @@
{
"count": -150
}

View File

@@ -1,3 +1,4 @@
{
"count": 150
"positive": 150,
"negative": -150
}

View File

@@ -3,5 +3,6 @@ syntax = "proto3";
// Some documentation about the Test message.
message Test {
// Some documentation about the count.
int32 count = 1;
int32 positive = 1;
int32 negative = 2;
}