| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function testCenter() |
||
| 21 | { |
||
| 22 | $chart = new Highchart(); |
||
| 23 | |||
| 24 | // pixel based |
||
| 25 | $chart->pane->center(array(50, 100)); |
||
| 26 | $this->assertRegExp('/pane: \{"center":\[50,100\]\}/', $chart->render()); |
||
| 27 | |||
| 28 | // percentage based |
||
| 29 | $chart->pane->center(array('50%', '40%')); |
||
| 30 | $this->assertRegExp('/pane: \{"center":\["50%","40%"\]\}/', $chart->render()); |
||
| 31 | } |
||
| 32 | |||
| 49 |