Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
31 | public function testData() |
||
32 | { |
||
33 | $chart = new Highchart(); |
||
34 | $chart->series($this->series); |
||
35 | |||
36 | $this->assertRegExp('/\{"name":"Data Serie #1","data":\[1,2,4,5,6,3,8\]\}/', $chart->render()); |
||
37 | $this->assertRegExp('/\{"name":"Data Serie #2","data":\[7,3,5,1,6,5,9\]\}/', $chart->render()); |
||
38 | } |
||
39 | } |
||
40 |