Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | public function testGlobal() |
||
16 | { |
||
17 | $chart = new Highchart(); |
||
18 | |||
19 | $chart->global->useUTC("true"); |
||
20 | $this->assertRegExp('/global: \{"useUTC":"true"\}/', $chart->render()); |
||
21 | |||
22 | $chart->global->useUTC("false"); |
||
23 | $this->assertRegExp('/global: \{"useUTC":"false"\}/', $chart->render()); |
||
24 | } |
||
25 | |||
37 |