public function testIsAllowedToUpdateFalse()
 {
     $username = '******';
     $this->config->expects($this->once())->method('getUsername')->willReturn($username);
     $results = array('testdata');
     $this->repository->expects($this->once())->method('findAfterCreated')->willReturn($results);
     $return = $this->abstractProvider->isAllowedToUpdate();
     $this->assertFalse($return);
 }