blob: d1dccb1ba6a3cde3b743cd6d70a2d38ec8f95a7e [file] [log] [blame]
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package chromiumos.test.api;
option go_package = "go.chromium.org/chromiumos/config/go/test/api";
import "chromiumos/test/api/coverage_rule.proto";
// A hardware test plan is composed of coverage rules
// Deprecated: Use v1/plan.proto instead.
message HWTestPlan {
option deprecated = true;
// Unique name to identify the test plan, recommend reverse domain name
// rooted at chromeos:
// chromeos.release.wifi....
message TestPlanId {
string value = 1;
}
TestPlanId id = 1;
repeated CoverageRule coverage_rules = 2;
}