| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | class StandardTest extends \PHPUnit\Framework\TestCase |
||
| 13 | { |
||
| 14 | private $object; |
||
| 15 | |||
| 16 | |||
| 17 | protected function setUp(): void |
||
| 23 | } |
||
| 24 | |||
| 25 | |||
| 26 | protected function tearDown(): void |
||
| 27 | { |
||
| 28 | \Aimeos\MShop::cache( false ); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function testGetUnknown() |
||
| 32 | { |
||
| 33 | $this->assertEquals( null, $this->object->get( 'cache-test' ) ); |
||
| 34 | } |
||
| 35 | |||
| 36 | public function testSet() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |