Description of CommonData.
Inheritance: ICommonData
Exemplo n.º 1
0
 public TestRun()
 {
     Data = new CommonData();
     TestSuites = new List<ITestSuite>();
     TestPlatforms = new List<ITestPlatform> {
         new TestPlatform {
             Id = TestData.DefaultPlatformId,
             Name = TestData.DefaultPlatformName,
             Description = Tmx_Core_Resources.TestRun_TestRun_This_platform_has_been_created_automatically
         }
     };
     
     BeforeActions = new List<IAction>();
     AfterActions = new List<IAction>();
     CancelActions = new List<IAction>();
     FailureActions = new List<IAction>();
     
     Status = TestRunStatuses.Pending;
     Id = Guid.NewGuid();
 }
Exemplo n.º 2
0
 public TestRun()
 {
     Data = new CommonData();
     TestSuites = new List<ITestSuite>();
     TestPlatforms = new List<ITestPlatform> {
         new TestPlatform {
             Id = TestData.DefaultPlatformId,
             Name = TestData.DefaultPlatformName,
             Description = "This platform has been created automatically"
         }
     };
     
     BeforeActions = new List<IAction>();
     AfterActions = new List<IAction>();
     CancelActions = new List<IAction>();
     FailureActions = new List<IAction>();
     
     Status = TestRunStatuses.Pending;
     Id = Guid.NewGuid();
 }
Exemplo n.º 3
0
 public TestWorkflow(ITestLab testLab)
 {
     Id = Guid.NewGuid();
     _testLab = testLab;
     DefaultData = new CommonData();
 }