VitaUnit.TestResultItem.SetTestResult C# (CSharp) Method

SetTestResult() public method

public SetTestResult ( TestResult testResult ) : void
testResult TestResult
return void
        public void SetTestResult(TestResult testResult)
        {
            _testResult = testResult;
            SetText(_testResult.MethodName);
            ShowResult(_testResult.WasSuccessful);
        }