| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class RegistryTest extends PHPUnit_Framework_TestCase |
||
| 20 | { |
||
| 21 | |||
| 22 | public function testRegistry() |
||
| 23 | { |
||
| 24 | Registry::setData('stdClass', new \stdClass()); |
||
| 25 | $this->assertInstanceOf(\stdClass::class, Registry::getData('stdClass')); |
||
| 26 | } |
||
| 27 | |||
| 28 | public function testSetDataException() |
||
| 32 | } // @codeCoverageIgnore |
||
| 33 | |||
| 34 | public function testGetDataException() |
||
| 40 |