using System; // 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 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 /// /// Create a new test state attribute. /// /// The state of testing. public TestStateAttribute(TestState setState) { State = setState; } #endregion } }