Inheritance: extends Piwik\API\ApiRenderer
Example #1
0
 /**
  * @expectedException \Exception
  * @expectedExceptionMessage Data structure returned is not convertible in the requested format
  */
 public function test_renderArray_ShouldConvertMultiDimensionalAssociativeArrayToJson()
 {
     $input = array("firstElement" => "isFirst", "secondElement" => array("firstElement" => "isFirst", "secondElement" => "isSecond"), "thirdElement" => "isThird");
     $actual = $this->builder->renderArray($input);
     $this->assertSame($input, $actual);
 }