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