BootTraits

Trait BootTraits.

Boot traits in tests.

For add new trait: Create trait Add method boot Add to your test class BootTraits and custom trait Add _boot() trait method call to test set-up

example

lang="php"> class AssertionTest extends PHPUnit\Framework\TestCase { use Tests\BootTraits, Tests\CustomTrait; public function setUp() { parent::setUp(); $this->_boot(); } public function tearDown() { parent::tearDown(); $this->_unBoot(); } }

class CustomTrait { public function bootCustomTrait() { // some run }

 public function unBootCustomTrait() {
     // some run rollback boot changes
 }

}

author

Donii Sergii doniysa@gmail.com

package

Default

Methods

Find and boot class traits.

_boot() 
Throws
\ReflectionException

Find and un-boot traits.

_unBoot() 
author

Donii Sergii doniysa@gmail.com

Throws
\ReflectionException

Check method exists in trait and call it.

checkTraits(string $prefix = '') 
author

Donii Sergii doniysa@gmail.com

Throws
\ReflectionException

Arguments

$prefix

string

Method name prefix