harness.proto 397 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package tests.harness;
  3. option go_package = "github.com/envoyproxy/protoc-gen-validate/tests/harness/go;harness";
  4. import "google/protobuf/any.proto";
  5. message TestCase {
  6. google.protobuf.Any message = 1;
  7. }
  8. message TestResult {
  9. bool Valid = 1;
  10. bool Error = 2;
  11. repeated string Reasons = 3;
  12. bool AllowFailure = 4;
  13. bool CheckMultipleErrors = 5;
  14. }