Beispiel #1
0
 /// <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));
 }
Beispiel #2
0
 /// <summary>
 /// Gets the test classes that exist in the specified namespace.
 /// </summary>
 public TestClass[] GetTestClasses(string ns)
 {
     return(TestClass.GetTestClasses(TestClasses, ns));
 }
Beispiel #3
0
 /// <summary>
 /// Gets the test classes whose namespaces start with the specified string.
 /// </summary>
 public TestClass[] GetAllTestClasses(string namespaceStartsWith)
 {
     return(TestClass.GetAllTestClasses(TestClasses, namespaceStartsWith));
 }