account->expects($this->once()) ->method('removeRole'); $this->account->expects($this->any()) ->method('hasRole') ->with($this->equalTo('test_role_1')) ->will($this->returnValue(TRUE)); $config = ['rid' => 'test_role_1']; $remove_role_plugin = new RemoveRoleUser($config, 'user_remove_role_action', ['type' => 'user'], $this->userRoleEntityType); $remove_role_plugin->execute($this->account); } /** * Tests the execute method on a user without a specific role. */ public function testExecuteRemoveNonExistingRole() { $this->account->expects($this->never()) ->method('removeRole'); $this->account->expects($this->any()) ->method('hasRole') ->with($this->equalTo('test_role_1')) ->will($this->returnValue(FALSE)); $config = ['rid' => 'test_role_1']; $remove_role_plugin = new RemoveRoleUser($config, 'user_remove_role_action', ['type' => 'user'], $this->userRoleEntityType); $remove_role_plugin->execute($this->account); } }