https://github.com/codekandis/phpunit
`codekandis/phpunit` is a library providing several wrapper and helper classes for the package `PHPUnit`.
https://github.com/codekandis/phpunit
classes helper php phpunit wrapper
Last synced: about 2 months ago
JSON representation
`codekandis/phpunit` is a library providing several wrapper and helper classes for the package `PHPUnit`.
- Host: GitHub
- URL: https://github.com/codekandis/phpunit
- Owner: codekandis
- License: mit
- Created: 2019-12-27T13:34:01.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-02-13T21:29:36.000Z (about 1 year ago)
- Last Synced: 2024-03-14T23:07:21.853Z (about 1 year ago)
- Topics: classes, helper, php, phpunit, wrapper
- Language: PHP
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# codekandis/phpunit
[![Version][xtlink-version-badge]][srclink-changelog]
[![License][xtlink-license-badge]][srclink-license]
[![Minimum PHP Version][xtlink-php-version-badge]][xtlink-php-net]This library provides several wrappers and helper classes for the package [`phpunit/phpunit`][xtlink-packagist-phpunit-phpunit].
## Index
* [Installation](#installation)
* [How to use](#how-to-use)
* [Using the test case wrapper](#using-the-test-case-wrapper)## Installation
Install the latest version with
```bash
$ composer require --dev codekandis/phpunit
```# How to use
## Using the test case wrapper
Create a new test case and inherit it from the wrapper `TestCase`.
```php