Microsoft.Silverlight.Testing.Client.TestClassData.TestClassData C# (CSharp) Method

TestClassData() public method

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.
return System
        public TestClassData(ITestClass testClass, TestAssemblyData parent)
        {
            _methods = new ObservableCollection<TestMethodData>();
            _parent = parent;

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