Skip to content

Commit

Permalink
doc: Update README.md (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus authored Dec 21, 2019
2 parents ab8c935 + 4494cc9 commit 23d4093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Coverage coverage = EntryPoint.runCoverage(String classpath, String targetProjec
Coverage coverage = EntryPoint.runCoverage(String classpath, String targetProjectClasses, String[] fullQualifiedNameOfTestClasses, String[] methodNames);
```

`String targetProjectClasses` must contain both relative paths to the binaries of the program and the binaries of the test suite. For a typical maven project, this is would be: `target/classes:target/test-classes`. Note that the separator, here `:` is used on Linux. You must use the system separator.
`String targetProjectClasses` must contain both the absolute paths to the binaries of the program and of the binaries of the test suite. For a typical maven project, this is would be: `<path_to_project>/target/classes:<path_to_project>/target/test-classes` where `<path_to_project>` is the path to the project under test. Note that the separator, here `:` is used on Linux. You must use the system separator.

##### Output

Expand Down

0 comments on commit 23d4093

Please sign in to comment.