philippwitzmann / testing
Testing Framework
1.1
2019-12-31 09:27 UTC
Requires
- fzaninotto/faker: ^1.8
- mockery/mockery: ^1.1
- phpunit/phpunit: ^8
Requires (Dev)
- php: >=7.2
- philippwitzmann/codingstandard: ^3.0.0.1
This package is auto-updated.
Last update: 2025-03-29 00:47:15 UTC
README
This library aims to provide basic functionality to write tests.
Installation
composer require --dev philippwitzmann/testing
Usage
Create a new Test File
<?php use PhilippWitzmann\Testing\TestCase; class SomeClassTest extends TestCase { protected function setUpTest() { // Do Initialisation for your mocks and subject here } protected function tearDownTest() { // Revert any leftovers from your tests } public function testSomething() { $this->assertTrue(true); } }
Running tests
phpunit --configuration config/phpunit.xml
Checking codestyle
phpcs