@madie/madie-models
Advanced tools
Comparing version 1.3.50 to 1.3.51
@@ -7,2 +7,3 @@ export interface TestCaseExcelExportDto { | ||
export interface TestCaseExecutionResultDto { | ||
testCaseId: string; | ||
populations: Array<PopulationDto>; | ||
@@ -20,2 +21,3 @@ notes?: string; | ||
functions: Array<FunctionDto>; | ||
stratifications?: Array<GroupedStratificationDto>; | ||
} | ||
@@ -26,2 +28,3 @@ export interface PopulationDto { | ||
actual: number; | ||
pass: boolean; | ||
} | ||
@@ -36,1 +39,14 @@ export interface DefinitionDto { | ||
} | ||
export interface StratificationDto { | ||
id: string; | ||
name: string; | ||
expected: number; | ||
actual: number; | ||
pass: boolean; | ||
} | ||
export interface GroupedStratificationDto { | ||
testCaseId: string; | ||
stratId: string; | ||
stratName: string; | ||
stratificationDtos: StratificationDto[]; | ||
} |
{ | ||
"name": "@madie/madie-models", | ||
"version": "1.3.50", | ||
"version": "1.3.51", | ||
"description": "Models for MADiE Project", | ||
@@ -5,0 +5,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19282
530