Skip to content

Commit

Permalink
Merge pull request #6 from carsdotcom/tests-in-readme
Browse files Browse the repository at this point in the history
Add instructions to unit test to the README
  • Loading branch information
czedonis authored Apr 19, 2024
2 parents 07d4d4c + b01f195 commit d5d7a22
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit d5d7a22

Please sign in to comment.