From b01f195b1b21a5382f647b2092e6af50ef93b9a0 Mon Sep 17 00:00:00 2001 From: Jeremy Wadhams Date: Fri, 19 Apr 2024 16:00:47 -0500 Subject: [PATCH] Add instructions to unit test to the README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 615fb3d..9cfa648 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,14 @@ So we created `AbstractRequest` as a standardized way to: 5. Provide a structure for chainable prerequisites (like authentication) 6. Provide a structure for catching exceptions and parsing responses back into your internal logic 7. Let you defer decisions about call order or synchronous/asynchronous processing to the user of the request class + +## Running the Tests +Install the dev dependencies: +```shell +composer install +``` + +Then run phpunit from the root of the project: +```shell +./vendor/bin/phpunit +``` \ No newline at end of file