1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 23:19:29 +00:00

Added TestResult test data

This commit is contained in:
2022-04-18 12:57:58 +00:00
parent ac1420a26e
commit 3242b401d3

View File

@@ -34,6 +34,9 @@ const details = {
}, },
accountClassLink: { accountClassLink: {
link: true link: true
},
testResult: {
id: 'uuid'
} }
}; };
@@ -460,6 +463,98 @@ const data = {
classId: 4, classId: 4,
} }
}, },
],
testResult: [
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 1,
testId: 2,
accountId: 1
}
},
{
mark: 70,
time: new MySQLDate(),
lookups: {
studentId: 2,
testId: 2,
accountId: 1
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 1,
testId: 5,
accountId: 1
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 2,
testId: 5,
accountId: 1
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 3,
testId: 5,
accountId: 1
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 4,
testId: 5,
accountId: 1
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 5,
testId: 5,
accountId: 1
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 3,
testId: 8,
accountId: 3
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 2,
testId: 8,
accountId: 3
}
},
{
mark: 50,
time: new MySQLDate(),
lookups: {
studentId: 1,
testId: 8,
accountId: 3
}
},
] ]
}; };