https://github.com/code-architect/ei-_india_phpunit_test
https://github.com/code-architect/ei-_india_phpunit_test
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/code-architect/ei-_india_phpunit_test
- Owner: code-architect
- Created: 2019-04-02T10:27:57.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-31T09:52:46.000Z (over 6 years ago)
- Last Synced: 2024-12-28T13:34:06.906Z (about 1 year ago)
- Language: PHP
- Size: 32.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
npx git-file-history path/to/file.ext
#####Run a specific file
vendor\bin\phpunit tests\ReceiptTest.php
#####Run a specific method
vendor\bin\phpunit tests --filter=testTax
#####Run a specific testsuite
vendor\bin\phpunit --testsuite=app
#####Run a specific testsuite and a sppecific method
vendor\bin\phpunit --testsuite=app --filter=testTax
#####Create code coverage report in a folder
vendor\bin\phpunit --coverage-html=
#####For help
vendor\bin\phpunit --help