| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function testGetManyToManyRelationshipDescriptor() |
||
| 10 | { |
||
| 11 | $object = new TDBMObject(); |
||
| 12 | $this->expectException(TDBMException::class); |
||
| 13 | $this->expectExceptionMessage('Could not find many to many relationship descriptor key for "foo"'); |
||
| 14 | $object->_getManyToManyRelationshipDescriptor('foo'); |
||
| 15 | } |
||
| 17 |