UTCore.TestFixture.AddTestAttribute C# (CSharp) Method

AddTestAttribute() public method

public AddTestAttribute ( TestAttribute ta ) : void
ta TestAttribute
return void
		public void AddTestAttribute(TestAttribute ta)
		{
			testList.Add(ta);
		}

Usage Example

		public override void SelfRegister(TestFixture tf)
		{
			tf.AddTestAttribute(this);
		}