setAPIUser() public method

public setAPIUser ( eZ\Publish\API\Repository\Values\User\User $apiUser )
$apiUser eZ\Publish\API\Repository\Values\User\User
 public function testGetSetAPIUser()
 {
     $originalUser = $this->getMock('Symfony\\Component\\Security\\Core\\User\\UserInterface');
     $userWrapped = new UserWrapped($originalUser, $this->apiUser);
     $this->assertSame($this->apiUser, $userWrapped->getAPIUser());
     $newApiUser = $this->getMock('eZ\\Publish\\API\\Repository\\Values\\User\\User');
     $userWrapped->setAPIUser($newApiUser);
     $this->assertSame($newApiUser, $userWrapped->getAPIUser());
 }