Microsoft.Test.UIAutomation.Logging.InfoObjects.StartTestInfo.StartTestInfo C# (CSharp) Méthode

StartTestInfo() public méthode

public StartTestInfo ( XmlNode xmlNodeObjectID, TestCaseAttribute testCaseAttribute, MethodInfo methodInfo ) : System
xmlNodeObjectID System.Xml.XmlNode XmlNode that idetifies the object to test. This can be as simple as the name of the control, to a node that represents the path
testCaseAttribute Microsoft.Test.UIAutomation.TestManager.TestCaseAttribute
methodInfo System.Reflection.MethodInfo MethodInfo of the method of the test
Résultat System
        public StartTestInfo(XmlNode xmlNodeObjectID, TestCaseAttribute testCaseAttribute, MethodInfo methodInfo)
        {
            this.XmlNodeObjectID = xmlNodeObjectID; 
            this.TestAttribute = testCaseAttribute;
            this.MethodInfo = methodInfo;

            StringBuilder possibleIssuesMessageBuilder = new StringBuilder();

            this.PossibleIssuesMessage = possibleIssuesMessageBuilder.ToString();
        }