/// <summary> /// Gets all the child namespaces with the specified parent /// namespace. The parent namespace can be one or more /// namespaces separated with a period. /// </summary> public string[] GetChildNamespaces(string parentNamespace) { return(TestClass.GetChildNamespaces(TestClasses, parentNamespace)); }
/// <summary> /// Gets the test classes that exist in the specified namespace. /// </summary> public TestClass[] GetTestClasses(string ns) { return(TestClass.GetTestClasses(TestClasses, ns)); }
/// <summary> /// Gets the test classes whose namespaces start with the specified string. /// </summary> public TestClass[] GetAllTestClasses(string namespaceStartsWith) { return(TestClass.GetAllTestClasses(TestClasses, namespaceStartsWith)); }