public function testIsEmpty()
 {
     $this->assertFalse($this->arrayCollection->isEmpty());
     $this->arrayCollection->clear();
     $this->assertTrue($this->arrayCollection->isEmpty());
 }