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

Improve documentation of tests.trigger.cause #581

Merged
merged 1 commit into from
May 31, 2024
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ all active bug IDs, along with the bug report ID and bug report URL for each.
|-----------------------|-------------------------------------------------------------------------------------|
| bug.id | Assigned bug IDs (included in all results) |
| project.id | Assigned project ID |
| project.name | Original project name |
| project.name | Original project name |
| project.build.file | Location of the Defects4J build file for the project |
| project.vcs | Version control system used by the project |
| project.repository | Location of the project repository |
Expand All @@ -223,8 +223,8 @@ all active bug IDs, along with the bug report ID and bug report URL for each.
| classes.relevant.src | Source classes loaded by the JVM when executing all triggering tests |
| classes.relevant.test | Test classes loaded by the JVM when executing all triggering tests |
| tests.relevant | List of relevant tests classes (a test class is relevant if, when executed, the JVM loads at least one of the modified classes) |
| tests.trigger | List of test methods that trigger (expose) the bug |
| tests.trigger.cause | List of test methods that trigger (expose) the bug, along with the root cause |
| tests.trigger | List of test methods that trigger (expose) the bug, separated by semicolons (`;`) |
| tests.trigger.cause | List of test methods that trigger (expose) the bug, along with the exception thrown. Each list element has the form "methodName --> exceptionClass[: message]", and list elements are separated by semicolons (`;`) |
| deprecated.version | (for deprecated bugs only) Version of Defects4J where a bug was deprecated |
| deprecated.reason | (for deprecated bugs only) Reason for deprecation |

Expand Down
Loading