Microsoft.Silverlight.Testing.Harness.TestRunFilter.SortTestClasses C# (CSharp) Méthode

SortTestClasses() protected méthode

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