| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class BaseTest extends \PHPUnit\Framework\TestCase |
||
| 18 | { |
||
| 19 | private $object; |
||
| 20 | |||
| 21 | |||
| 22 | protected function setUp() : void |
||
| 23 | { |
||
| 24 | $context = \TestHelper::context(); |
||
| 25 | $this->object = new \Aimeos\Controller\Frontend\Example( $context ); |
||
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | protected function tearDown() : void |
||
| 30 | { |
||
| 31 | unset( $this->object ); |
||
| 32 | } |
||
| 33 | |||
| 34 | |||
| 35 | public function testGetContext() |
||
| 40 | } |
||
| 41 | |||
| 42 | |||
| 43 | protected function access( $name ) |
||
| 52 |