-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevature.json
More file actions
25 lines (25 loc) · 876 Bytes
/
revature.json
File metadata and controls
25 lines (25 loc) · 876 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
{
"type": "java",
"testFiles": [
{
"path": "src/test/java/GameServiceTest.java",
"testCases": [
{
"methodName": "gameServiceTest1",
"label": "Verifies checkGuess returns false for incorrect guess",
"description": "Sets secretNumber to 3.14 and checks that checkGuess(2.71) returns false."
},
{
"methodName": "gameServiceTest2",
"label": "Verifies checkGuess returns true for correct guess",
"description": "Sets secretNumber to 3.14 and verifies that checkGuess(3.14) returns true."
},
{
"methodName": "gameServiceTest3",
"label": "Verifies checkGuess returns false when guess no longer matches",
"description": "Changes secretNumber to 2.71 and confirms that checkGuess(3.14) now returns false."
}
]
}
]
}