public function testPushEntityId()
 {
     $watcher = $this->_watcherMapper->findOneById('sdsdsdsdsd');
     $this->assertInstanceOf('\\Core\\Model\\WatcherModel', $watcher);
     $newEntityId = uniqid();
     $result = $this->_watcherMapper->pushEntityId($watcher, $newEntityId);
     $this->assertTrue($result);
 }