Exemplo n.º 1
0
 public MyRunCaseData(T yourContent, int yourId, CaseProtocol yourcontentProtocol)
 {
     errorMessages   = null;
     testContent     = yourContent;
     id              = yourId;
     contentProtocol = yourcontentProtocol;
     actions         = null;
     caseExpectInfo  = new myExpectInfo();
     caseAttribute   = new myCaseAttribute();
 }
Exemplo n.º 2
0
 public MyRunCaseData(T yourContent, int yourId, CaseProtocol yourcontentProtocol, string yourErrorMessage)
 {
     errorMessages = new List <string>();
     errorMessages.Add(yourErrorMessage);
     testContent     = yourContent;
     id              = yourId;
     contentProtocol = yourcontentProtocol;
     actions         = null;
     caseExpectInfo  = new myExpectInfo();
     caseAttribute   = new myCaseAttribute();
 }