NUnit.Framework.Internal.FinallyDelegate.Set C# (CSharp) 메소드

Set() 공개 메소드

public Set ( TestExecutionContext context, long startTicks, NUnit.Framework.Internal.TestResult result ) : void
context TestExecutionContext
startTicks long
result NUnit.Framework.Internal.TestResult
리턴 void
		public void Set (TestExecutionContext context, long startTicks, TestResult result) {
			var frame = new Tuple<TestExecutionContext, long, TestResult>(context, startTicks, result);
			this.testStack.Push(frame);
		}