// Copyright Keysight Technologies 2012-2019
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at http://mozilla.org/MPL/2.0/.
namespace OpenTap
{
///
/// Enumeration containing the verdict types used for and properties.
///
public enum Verdict : int
{
///
/// No verdict has been set. This is the default value.
///
[Display("Not Set")]
NotSet = 0,
///
/// Test passed.
///
Pass = 10,
///
/// Test had an inconclusive result.
///
Inconclusive = 20,
///
/// Test failed.
///
Fail = 30,
///
/// Test was aborted.
///
Aborted = 40,
///
/// Test failed due to an exception or another procedural error. Such as no instrument/DUT connection.
///
Error = 50
}
}