Microsoft.Silverlight.Testing.Client.TestClassData.TestClassData C# (CSharp) Méthode

TestClassData() public méthode

Initializes a new instance of the TestClassData type.
public TestClassData ( ITestClass testClass, TestAssemblyData parent ) : System
testClass ITestClass The test class metadata.
parent TestAssemblyData The parent test assembly data object.
Résultat System
        public TestClassData(ITestClass testClass, TestAssemblyData parent)
        {
            _methods = new ObservableCollection<TestMethodData>();
            _parent = parent;

            Name = testClass.Name;
            Namespace = testClass.Namespace;
        }