Beispiel #1
0
 /**
  * @dataProvider simpleArrayProvider
  */
 public function testIsEmpty(array $array)
 {
     $isEmpty = !$array;
     $ma = new ImmutableArray($array);
     $this->assertTrue($isEmpty === $ma->isEmpty());
 }