File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,22 @@ git clone https://github.com/stleary/JSON-Java-unit-test.git .
2929\# Create a directory structure for the JSON-Java code
3030````
3131# Windows version
32- md /s src\org\json
32+ md /s src\main\java\org\json
33+ # *nix version
34+ mkdir -p src/main/java/org/json
3335````
3436\# clone JSON-Java
3537````
36- git clone https://github.com/stleary/JSON-Java.git src\org\json
38+ #Windows version
39+ git clone https://github.com/stleary/JSON-Java.git src\main\java\org\json
40+
41+ #*Nix version
42+ git clone https://github.com/stleary/JSON-Java.git src/main/java/org/json
3743````
3844\# Build, then execute the unit tests and code coverage
3945````
4046gradle clean build test jacocoTestReport
47+
4148````
4249Unit test results will be in build\reports\tests\index.html<br >
4350Code coverage will be in build\reports\jacoco\html\index.html
You can’t perform that action at this time.
0 commit comments