public function testDeletesUser() { $userId = 809; $this->page->expects($this->once())->method('GetUserId')->will($this->returnValue($userId)); $this->manageUsersService->expects($this->once())->method('DeleteUser')->with($this->equalTo($userId)); $this->presenter->DeleteUser(); }