StatLight.Client.Harness.Hosts.MSTest.UnitTestProviders.MSTest.UnitTestFrameworkAssembly.GetTestClasses C# (CSharp) Method

GetTestClasses() public method

Reflect and retrieve the test class metadata wrappers for the test assembly.
public GetTestClasses ( ) : ICollection
return ICollection
        public override ICollection<ITestClass> GetTestClasses()
        {
            return base.Assembly.GetTestClasses(
                type => type.HasAttribute(ProviderAttributes.TestClass),
                type => new TestClass(this, type));
        }