2012-08-09 09:45:04 +00:00
|
|
|
using System;
|
2012-02-18 22:43:08 +00:00
|
|
|
|
2012-08-09 09:45:04 +00:00
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
2012-02-18 22:43:08 +00:00
|
|
|
|
|
|
|
namespace ANX.Framework.NonXNA.Development
|
|
|
|
{
|
|
|
|
public class TestStateAttribute : Attribute
|
|
|
|
{
|
|
|
|
#region TestState (enum)
|
|
|
|
public enum TestState
|
|
|
|
{
|
|
|
|
Untested,
|
|
|
|
InProgress,
|
|
|
|
Tested,
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Public
|
|
|
|
public TestState State
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
private set;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Constructor
|
|
|
|
/// <summary>
|
|
|
|
/// Create a new test state attribute.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="setState">The state of testing.</param>
|
|
|
|
public TestStateAttribute(TestState setState)
|
|
|
|
{
|
|
|
|
State = setState;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|