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