Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function testGetPrimaryKeyComposite() |
||
25 | { |
||
26 | $this->object->getManager()->setPrimaryKey(['id_parent', 'type']); |
||
27 | $this->object->id_parent = 99; |
||
28 | $this->object->type = 'book'; |
||
29 | |||
30 | static::assertEquals(['id_parent' => 99, 'type' => 'book'], $this->object->getPrimaryKey()); |
||
31 | } |
||
46 |