Organize test-cases into folders, extract compatibility test into proper test, support adding test-case specific tests
This commit is contained in:
4
betterproto/tests/inputs/signed/signed-negative.json
Normal file
4
betterproto/tests/inputs/signed/signed-negative.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"signed_32": -150,
|
||||
"signed_64": "-150"
|
||||
}
|
||||
4
betterproto/tests/inputs/signed/signed.json
Normal file
4
betterproto/tests/inputs/signed/signed.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"signed_32": 150,
|
||||
"signed_64": "150"
|
||||
}
|
||||
6
betterproto/tests/inputs/signed/signed.proto
Normal file
6
betterproto/tests/inputs/signed/signed.proto
Normal file
@@ -0,0 +1,6 @@
|
||||
syntax = "proto3";
|
||||
|
||||
message Test {
|
||||
sint32 signed_32 = 1;
|
||||
sint64 signed_64 = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user