/// <summary>
 /// Initializes a new instance of the TestSetPackageDto class.
 /// </summary>
 public TestSetPackageDto(string versionMask, string packageIdentifier, long?testSetId = default(long?), TestSetDto testSet = default(TestSetDto), bool?includePrerelease = default(bool?), System.DateTime?lastModificationTime = default(System.DateTime?), long?lastModifierUserId = default(long?), System.DateTime?creationTime = default(System.DateTime?), long?creatorUserId = default(long?), long?id = default(long?))
 {
     TestSetId            = testSetId;
     TestSet              = testSet;
     VersionMask          = versionMask;
     PackageIdentifier    = packageIdentifier;
     IncludePrerelease    = includePrerelease;
     LastModificationTime = lastModificationTime;
     LastModifierUserId   = lastModifierUserId;
     CreationTime         = creationTime;
     CreatorUserId        = creatorUserId;
     Id = id;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the TestCaseDto class.
 /// </summary>
 public TestCaseDto(long definitionId, long releaseId, string versionNumber, bool?enabled = default(bool?), TestCaseDefinitionDto definition = default(TestCaseDefinitionDto), long?testSetId = default(long?), TestSetDto testSet = default(TestSetDto), System.DateTime?lastModificationTime = default(System.DateTime?), long?lastModifierUserId = default(long?), System.DateTime?creationTime = default(System.DateTime?), long?creatorUserId = default(long?), long?id = default(long?))
 {
     Enabled              = enabled;
     DefinitionId         = definitionId;
     Definition           = definition;
     ReleaseId            = releaseId;
     VersionNumber        = versionNumber;
     TestSetId            = testSetId;
     TestSet              = testSet;
     LastModificationTime = lastModificationTime;
     LastModifierUserId   = lastModifierUserId;
     CreationTime         = creationTime;
     CreatorUserId        = creatorUserId;
     Id = id;
     CustomInit();
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the TestSetExecutionDto class.
 /// </summary>
 /// <param name="status">Possible values include: 'Pending', 'Running',
 /// 'Cancelling', 'Passed', 'Failed', 'Cancelled'</param>
 /// <param name="triggerType">Possible values include: 'Manual',
 /// 'Scheduled', 'ExternalTool'</param>
 public TestSetExecutionDto(string name = default(string), long?testSetId = default(long?), long?organizationUnitId = default(long?), TestSetDto testSet = default(TestSetDto), System.DateTime?startTime = default(System.DateTime?), System.DateTime?endTime = default(System.DateTime?), TestSetExecutionDtoStatus?status = default(TestSetExecutionDtoStatus?), TestSetExecutionDtoTriggerType?triggerType = default(TestSetExecutionDtoTriggerType?), long?scheduleId = default(long?), System.Guid?batchExecutionKey = default(System.Guid?), IList <TestCaseExecutionDto> testCaseExecutions = default(IList <TestCaseExecutionDto>), System.DateTime?creationTime = default(System.DateTime?), long?creatorUserId = default(long?), long?id = default(long?))
 {
     Name               = name;
     TestSetId          = testSetId;
     OrganizationUnitId = organizationUnitId;
     TestSet            = testSet;
     StartTime          = startTime;
     EndTime            = endTime;
     Status             = status;
     TriggerType        = triggerType;
     ScheduleId         = scheduleId;
     BatchExecutionKey  = batchExecutionKey;
     TestCaseExecutions = testCaseExecutions;
     CreationTime       = creationTime;
     CreatorUserId      = creatorUserId;
     Id = id;
     CustomInit();
 }