From 6ac515e4c3c6f2fd1ac7f68274678fccad5296da Mon Sep 17 00:00:00 2001 From: Robin Ingelbrecht Date: Tue, 22 Aug 2023 09:07:49 +0200 Subject: [PATCH] Update README.md --- README.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7febc51..357cd11 100644 --- a/README.md +++ b/README.md @@ -46,9 +46,11 @@ Also make sure the `color` attribute is set to `true`: ``` -### Options +## Options -* Output profiling report at the end of the test run +All these options can be set at runtime as well, see usage. + +### Output profiling report ```xml @@ -58,7 +60,7 @@ Also make sure the `color` attribute is set to `true`: ``` -* Use compact mode to only output the testsuite results instead of all separate tests +### Enable compact mode ```xml @@ -68,7 +70,7 @@ Also make sure the `color` attribute is set to `true`: ``` -* Feel good about yourself after running your testsuite by displaying a Chuck Noris quote +### Feel good about yourself after running your testsuite by displaying a Chuck Noris quote ```xml @@ -78,7 +80,9 @@ Also make sure the `color` attribute is set to `true`: ``` -* Disable pretty print. This can be useful when you only want to prettify the output when forced via CLI (see usage). +### Disable pretty print. + +This can be useful when you only want to prettify the output when forced via CLI (see usage). ```xml @@ -98,7 +102,7 @@ Also make sure the `color` attribute is set to `true`: Example default

-Print profiling +### Output profiling report ```bash > vendor/bin/phpunit -d --profiling @@ -108,7 +112,7 @@ Print profiling Example profiling

-Use compact mode +### Enable compact mode ```bash > vendor/bin/phpunit -d --compact @@ -118,7 +122,7 @@ Use compact mode Example compact

-Display Chuck Norris quote +### Display Chuck Norris quote ```bash > vendor/bin/phpunit -d --display-quote @@ -128,14 +132,14 @@ Display Chuck Norris quote Example quote

-Enable/disable pretty print +### Enable/disable pretty print ```bash > vendor/bin/phpunit -d --enable-pretty-print > vendor/bin/phpunit -d --disable-pretty-print ``` -Combine multiple options +### Combine multiple options ```bash > vendor/bin/phpunit --configuration=tests/phpunit.test.xml -d --compact -d --display-quote