Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: Update README.md #77

Merged
merged 2 commits into from
Dec 21, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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