A collection of test helpers to ease testing of Symfony3 projects.
<?php
use InterNations\Component\Testing\AbstractTestCase;
class MyTest extends AbstractTestCase
{
}
<?php
use InterNations\Component\Testing\AccessTrait;
class MyTest ...
{
use AccessTrait;
public function testSomething()
{
$this->setNonPublicProperty($this->sut, 'privateProperty', 'value');
$this->callNonPublicMethod($this->sut, 'protectedMethod', ['arg1', 'arg2']);
}
}