-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_test.ts
More file actions
34 lines (27 loc) · 735 Bytes
/
sample_test.ts
File metadata and controls
34 lines (27 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { CellLocation } from "./cell_location.ts";
import { IntegrationTest } from "./integration_test.ts";
import { XlsxFile } from "./mod.ts"
export type LocationsFormat = {
sheetName: string,
no: CellLocation,
type: CellLocation,
result: CellLocation
};
export class SampleTest extends XlsxFile {
//private locations: CellLocation;
#locations: Array<LocationsFormat>;
set locations(locations: Array<LocationsFormat>) {
this.#locations = structuredClone(locations);
}
constructor(testName: string, filepath: string) {
super();
super.open(filepath);
this.#locations = new Array<LocationsFormat>;
}
analyze(): void {
super.analyze();
}
getData() {
super.getData();
}
}