Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function testSpecificPresentationModelsShouldOnlySetDefinedVariables() |
||
29 | { |
||
30 | $presentationModel = new Item([ |
||
31 | 'name' => 'Expect this to be set', |
||
32 | 'some_other_variable' => 'But not this', |
||
33 | ]); |
||
34 | |||
35 | $variables = $presentationModel->getVariables(); |
||
36 | |||
37 | $this->assertArrayHasKey('name', $variables); |
||
38 | $this->assertArrayNotHasKey('some_other_variable', $variables); |
||
39 | } |
||
63 |