syntax = "proto3";

package tests.harness;
option go_package = "harness";

import "google/protobuf/any.proto";

message TestCase {
    google.protobuf.Any message = 1;
}

message TestResult {
    bool   Valid  = 1;
    bool   Error  = 2;
    string Reason = 3;
    bool   AllowFailure = 4;
}
