StoryTeller.Execution.ProjectTestRunner.FindTest C# (CSharp) Method

FindTest() public method

public FindTest ( string testPath ) : System.Test
testPath string
return System.Test
        public Test FindTest(string testPath)
        {
            var test = _hierarchy.FindTest(testPath);

            if (test == null) throw new ArgumentOutOfRangeException("Test {0} cannot be found".ToFormat(testPath));
            return test;
        }