Example #1
0
 /**
  * @expectedException \CollectionType\Exception\SynchronizeException
  *
  * @covers       CollectionType\Map\MapAbstract::count
  * @covers       CollectionType\Map\MapAbstract::__construct
  * @covers       CollectionType\Map\MapAbstract::isSynchronizedIndex
  */
 public function testCountForNotSynchronizedMap()
 {
     $this->map->putKey(1);
     $this->map->count();
 }