//----------------------------------------------------------------------------------------------------------------------
/// \file
/// Possible WexLogger test results.
// Copyright (c) Microsoft Corporation. All Rights Reserved.
//----------------------------------------------------------------------------------------------------------------------
#pragma once
namespace WEX { namespace Logging
{
namespace TestResults
{
///
/// Possible WexLogger test results.
///
enum Result
{
/// The test passed.
Passed = 0,
/// The test was not run.
NotRun,
/// The test was skipped.
Skipped,
/// The test was blocked.
Blocked,
/// The test failed.
Failed,
/// The test result is unknown.
Unknown
};
}
} /* namespace Logging */ } /* namespace WEX */