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