Skip to content

Commit

Permalink
Merge pull request #211 from MeasureAuthoringTool/MAT-6819_multiPopul…
Browse files Browse the repository at this point in the history
…ationsWorkSheet

Release 1.3.51
  • Loading branch information
sb-cecilialiu authored Apr 4, 2024
2 parents 9888c6f + 99d6fc3 commit dc09563
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@madie/madie-models",
"version": "1.3.50",
"version": "1.3.51",
"description": "Models for MADiE Project",
"scripts": {
"build": "tsc",
Expand Down
18 changes: 18 additions & 0 deletions src/TestCaseExcelExportDto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export interface TestCaseExcelExportDto {
}

export interface TestCaseExecutionResultDto {
testCaseId: string;
populations: Array<PopulationDto>;
notes?: string;
last: string;
Expand All @@ -17,12 +18,14 @@ export interface TestCaseExecutionResultDto {
gender?: string;
definitions: Array<DefinitionDto>;
functions: Array<FunctionDto>;
stratifications?: Array<GroupedStratificationDto>;
}

export interface PopulationDto {
name: string;
expected: number;
actual: number;
pass: boolean;
}

export interface DefinitionDto {
Expand All @@ -34,3 +37,18 @@ export interface FunctionDto {
logic: string;
actual: string;
}

export interface StratificationDto {
id: string;
name: string;
expected: number;
actual: number;
pass: boolean;
}

export interface GroupedStratificationDto {
testCaseId: string;
stratId: string;
stratName: string;
stratificationDtos: StratificationDto[];
}

0 comments on commit dc09563

Please sign in to comment.