test_runners_lib/
cases.rs

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