Exemplo n.º 1
0
 public Test(string opName, string arg1, string arg2, string arg3, string expectedResult)
 {
     _op                     = new Operation();
     _op.Name                = opName;
     _op.Arg1                = arg1;
     _op.Arg2                = arg2;
     _op.Arg3                = arg3;
     _op.ExpectedResult      = expectedResult;
     _testResult             = new TestResult();
     _testResult.ExpectedWKT = this.Operation.ExpectedResult;
     _timer                  = new PerformanceTimer();
 }
Exemplo n.º 2
0
		public Test(string opName, string arg1, string arg2, string arg3, string expectedResult)
		{
			_op = new Operation();
			_op.Name = opName;
			_op.Arg1 = arg1;
			_op.Arg2 = arg2;
			_op.Arg3 = arg3;
			_op.ExpectedResult = expectedResult;
			_testResult = new TestResult();
			_testResult.ExpectedWKT = this.Operation.ExpectedResult;
			_timer = new PerformanceTimer();
		}