Exemplo n.º 1
0
 /**
  * Tests Arr::isArray()
  *
  * @test
  * @dataProvider providerIsArray
  * @param mixed   $value     Value to check
  * @param boolean $expected  Is $value an array?
  */
 public function testIsArray($array, $expected)
 {
     $this->assertSame($expected, Arr::isArray($array));
 }