Skip to content

Commit

Permalink
Merge pull request #206 from MeasureAuthoringTool/MAT-6728_singlePopu…
Browse files Browse the repository at this point in the history
…lationExcel

Release 1.3.48
  • Loading branch information
sb-cecilialiu authored Mar 22, 2024
2 parents f3604c8 + 52f3833 commit 8a40aa4
Show file tree
Hide file tree
Showing 3 changed files with 39 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.47",
"version": "1.3.48",
"description": "Models for MADiE Project",
"scripts": {
"build": "tsc",
Expand Down
36 changes: 36 additions & 0 deletions src/TestCaseExcelExportDto.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
export interface TestCaseExcelExportDto {
groupId: string;
groupNumber: string;
testCaseExecutionResults: TestCaseExecutionResultDto[];
}

export interface TestCaseExecutionResultDto {
populations: Array<Population>;
notes?: string;
last: string;
first: string;
birthdate?: string;
expired?: string;
deathdate?: string;
ethnicity?: string;
race?: string;
gender?: string;
definitions: Array<Definition>;
functions: Array<Func>;
}

export interface Population {
name: string;
expected: number;
actual: number;
}

export interface Definition {
logic: string;
actual: string;
}

export interface Func {
logic: string;
actual: string;
}

0 comments on commit 8a40aa4

Please sign in to comment.