/**
  * @test
  */
 public function shouldFailToEditUserWhenNoDataIsSupplied()
 {
     $this->setExpectedException(NothingToModifyException::class);
     $handler = HandlerStack::create();
     $this->client = ProvisioningClientCreator::createProvisioningClient($handler);
     $editUserCommand = new EditUser('username');
     $this->client->editUser($editUserCommand);
 }