| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class ProtectTest extends \PHPUnit\Framework\TestCase |
||
| 7 | { |
||
| 8 | private $object; |
||
| 9 | |||
| 10 | |||
| 11 | protected function setUp() : void |
||
| 15 | } |
||
| 16 | |||
| 17 | |||
| 18 | public function testGet() |
||
| 21 | } |
||
| 22 | |||
| 23 | |||
| 24 | public function testGetProtected() |
||
| 28 | } |
||
| 29 | |||
| 30 | |||
| 31 | public function testSet() |
||
| 32 | { |
||
| 33 | $this->assertInstanceOf( \Aimeos\Base\Config\Iface::class, $this->object->set( 'client/html/test', 'testval' ) ); |
||
| 34 | } |
||
| 35 | |||
| 36 | |||
| 37 | public function testApply() |
||
| 40 | } |
||
| 41 | } |
||
| 42 |