We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc2865 commit 70f0099Copy full SHA for 70f0099
1 file changed
.github/classroom/autograding.json
@@ -1,14 +1,24 @@
1
{
2
"tests": [
3
4
- "name": "Grading",
5
- "setup": "",
6
- "run": "mvn test",
7
- "input": "",
8
- "output": "",
9
- "comparison": "included",
+ "name": "Compilation Check",
+ "run": "mvn compile",
+ "points": 0,
10
"timeout": 10,
11
- "points": 1
+ "required": true
+ },
+ {
+ "name": "Basic Tests",
12
+ "run": "mvn test -Dtest=BasicTest",
13
+ "points": 1,
14
+ "timeout": 10,
15
16
17
18
+ "name": "Edge Case Tests",
19
+ "run": "mvn test -Dtest=EdgeCaseTest",
20
+ "points": 2,
21
+ "timeout": 10
22
}
23
]
-}
24
+}
0 commit comments