| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function testInitializeUnknownReferenceThrowsException() |
||
| 17 | { |
||
| 18 | $dm = $this->createDocumentManager(); |
||
| 19 | $user1 = $dm->getReference('Doctrine\Tests\Models\CMS\CmsUser', 1); |
||
| 20 | |||
| 21 | $this->setExpectedException('Doctrine\ODM\CouchDB\DocumentNotFoundException'); |
||
| 22 | $user1->getUsername(); |
||
| 23 | } |
||
| 24 | |||
| 45 | } |