public function testAppend()
 {
     $entities = $this->createEntityArray();
     $collection = new Collection($entities);
     $newEntity = $this->getMock('InoPerunApi\\Entity\\EntityInterface');
     $collection->append($newEntity);
     $exportedEntities = $collection->getEntities();
     $this->assertSame($newEntity, $exportedEntities[count($entities)]);
 }