blob: 67120d5cbd55f5728038f3d1e1d809f4e80018a6 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! General-purpose structs related to test cases.
/// Internal representation of a test case, after it has been parsed from the data provided by a
/// test binary.
#[derive(Debug, Clone, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct TestCaseInfo {
/// Name of the test case.
pub name: String,
/// Whether the test is enabled or disabled by the developer.
pub enabled: bool,
}