Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laracasts-jverd/kata
A set of patterns to harness my PHP routine
https://github.com/laracasts-jverd/kata
phpunit
Last synced: 6 days ago
JSON representation
A set of patterns to harness my PHP routine
- Host: GitHub
- URL: https://github.com/laracasts-jverd/kata
- Owner: laracasts-jverd
- Created: 2024-07-24T19:42:50.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-20T08:54:46.000Z (3 months ago)
- Last Synced: 2024-10-10T11:43:46.133Z (27 days ago)
- Topics: phpunit
- Language: PHP
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kata using PHP Unit
Initialization
```sh
composer require phpunit/phpunit
composer dump-autoload # after adding psr-4 in composer.json
```Execute tests with PHPUnit
```sh
./vendor/bin/phpunit tests
./vendor/bin/phpunit tests/RomanNumeralsTest.php
```Documentation:
-
- [99 bottles of beer](https://www.codewars.com/kata/52a723508a4d96c6c90005ba)