mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 22:19:26 +00:00
35 lines
261 B
JavaScript
35 lines
261 B
JavaScript
'use strict';
|
|
|
|
class Test {
|
|
testId;
|
|
testTemplateId;
|
|
classId;
|
|
testDate;
|
|
|
|
constructor () {
|
|
|
|
}
|
|
|
|
get class() {
|
|
|
|
}
|
|
|
|
get students() {
|
|
|
|
}
|
|
|
|
get testTemplate() {
|
|
|
|
}
|
|
|
|
calculateAverageScore() {
|
|
|
|
}
|
|
|
|
calculateGradeBoundaries() {
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = Test;
|