| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function testLoadMetadataForClass() |
||
| 42 | { |
||
| 43 | parent::testLoadMetadataForClass(); |
||
| 44 | |||
| 45 | $this |
||
| 46 | ->given($driver = $this->createDriver()) |
||
| 47 | ->then() |
||
| 48 | ->variable($driver->loadMetadataForClass('Cubiche\Foo\Bar\Tests\Blog')) |
||
| 49 | ->isNull() |
||
| 50 | ->variable($driver->loadMetadataForClass('Address')) |
||
| 51 | ->isNull() |
||
| 52 | ; |
||
| 53 | } |
||
| 54 | } |
||
| 55 |