AspUnitRunner.Core.ResultParser.ParseResultType C# (CSharp) Method

ParseResultType() private static method

private static ParseResultType ( string text ) : ResultType
text string
return ResultType
        private static ResultType ParseResultType(string text)
        {
            return (ResultType)Enum.Parse(typeof(ResultType), text);
        }