Microsoft.Silverlight.Testing.Client.TestMethodData.TestMethodData C# (CSharp) 메소드

TestMethodData() 공개 메소드

Initializes a new instance of the TestMethodData type.
public TestMethodData ( ITestMethod testMethod, TestClassData parent ) : System
testMethod ITestMethod The test method metadata.
parent TestClassData The test class that is the parent object.
리턴 System
        public TestMethodData(ITestMethod testMethod, TestClassData parent)
        {
            if (testMethod == null)
            {
                throw new ArgumentNullException("testMethod");
            }

            _parent = parent;
            _metadata = testMethod;
        }