Microsoft.Silverlight.Testing.Harness.TestRunFilter.SortTestClasses C# (CSharp) Method

SortTestClasses() protected method

Sort the test classes if the settings for alphabetical sorting are present.
protected SortTestClasses ( IList tests ) : void
tests IList List of test classes.
return void
        protected void SortTestClasses(IList<ITestClass> tests)
        {
            if (_settings != null)
            {
                TestAssemblyHelper.SortTestClasses(tests);
            }
        }