Skip to content

Commit 70f0099

Browse files
authored
Update autograding.json
1 parent cbc2865 commit 70f0099

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

.github/classroom/autograding.json

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
{
22
"tests": [
33
{
4-
"name": "Grading",
5-
"setup": "",
6-
"run": "mvn test",
7-
"input": "",
8-
"output": "",
9-
"comparison": "included",
4+
"name": "Compilation Check",
5+
"run": "mvn compile",
6+
"points": 0,
107
"timeout": 10,
11-
"points": 1
8+
"required": true
9+
},
10+
{
11+
"name": "Basic Tests",
12+
"run": "mvn test -Dtest=BasicTest",
13+
"points": 1,
14+
"timeout": 10,
15+
"required": true
16+
},
17+
{
18+
"name": "Edge Case Tests",
19+
"run": "mvn test -Dtest=EdgeCaseTest",
20+
"points": 2,
21+
"timeout": 10
1222
}
1323
]
14-
}
24+
}

0 commit comments

Comments
 (0)