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

DataManager() private method

Initializes a new instance of the DataManager type.
private DataManager ( UnitTestHarness harness ) : System
harness Microsoft.Silverlight.Testing.Harness.UnitTestHarness The unit test harness instance.
return System
        private DataManager(UnitTestHarness harness)
        {
            _d = new TestRunData(harness);
            _h = harness;

            _assemblyData = new Dictionary<IAssembly, TestAssemblyData>(2);
            _classData = new Dictionary<ITestClass, TestClassData>(50);
            _methodData = new Dictionary<ITestMethod, TestMethodData>(300);
        }