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

TestMethodData() public method

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.
return System
        public TestMethodData(ITestMethod testMethod, TestClassData parent)
        {
            if (testMethod == null)
            {
                throw new ArgumentNullException("testMethod");
            }

            _parent = parent;
            _metadata = testMethod;
        }