From e0895a116167dd0beca7a3dd91342c23a096af76 Mon Sep 17 00:00:00 2001 From: Louis Bergelson Date: Tue, 13 Nov 2018 09:32:51 -0500 Subject: [PATCH] Update the README with working test examples (#1225) * The existing examples of how to run single tests are broken, updating them with working examples. * Resolves #984 --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index afe901e056..30e9dbc2ff 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,9 @@ Example gradle usage from the htsjdk root directory: ``` ./gradlew test - ./gradlew test -Dtest.single=TestClassName + ./gradlew test --tests AlleleUnitTest - ./gradlew test --tests htsjdk.variant.variantcontext.AlleleUnitTest - ./gradlew test --tests "*AlleleUnitTest" - - ./gradlew test --tests "*AlleleUnitTest" --debug-jvm + ./gradlew test --tests AlleleUnitTest --debug-jvm ``` - run tests and collect coverage information (report will be in `build/reports/jacoco/test/html/index.html`)