/**
  * @expectedException \Magento\Framework\Exception\NoSuchEntityException
  * @expectedExceptionMessage No such entity with id = 9999
  */
 public function testDeleteDoesNotExist()
 {
     $this->assertFalse($this->groupRepository->deleteById(9999));
 }