示例#1
0
 /**
  * @dataProvider simpleArrayProvider
  */
 public function testDebugReturn(array $array)
 {
     $ma = new MutableArray($array);
     $printed = print_r($array, true);
     $this->assertTrue($printed === $ma->debug(true));
 }