Microsoft.Protocols.TestManager.Kernel.CaseListItem.CaseListItem C# (CSharp) Method

CaseListItem() public method

Constructor
public CaseListItem ( string name, TestCaseStatus status ) : System
name string Name of the test case
status TestCaseStatus The status of the test case
return System
        public CaseListItem(string name, TestCaseStatus status)
        {
            Name = name;
            Outcome = status == TestCaseStatus.Other ? "Inconclusive" : status.ToString();
        }