本文整理匯總了PHP中Illuminate\Routing\UrlGenerator::shouldReceive方法的典型用法代碼示例。如果您正苦於以下問題:PHP UrlGenerator::shouldReceive方法的具體用法?PHP UrlGenerator::shouldReceive怎麽用?PHP UrlGenerator::shouldReceive使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Illuminate\Routing\UrlGenerator
的用法示例。
在下文中一共展示了UrlGenerator::shouldReceive方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: the_default_config_can_be_overwritten_by_passing_arguments_to_get_login_url
/** @test */
public function the_default_config_can_be_overwritten_by_passing_arguments_to_get_login_url()
{
$this->url_mock->shouldReceive('to')->with('https://poop.fart/callback')->once()->andReturn('https://poop.fart/callback');
$this->config_mock->shouldReceive('get')->never();
$login_url = $this->laravel_facebook_sdk->getLoginUrl(['dance', 'totes'], 'https://poop.fart/callback');
$this->assertContains('redirect_uri=https%3A%2F%2Fpoop.fart%2Fcallback', $login_url);
$this->assertContains('scope=dance%2Ctotes', $login_url);
}
示例2: should_flash_language_messages_with_type_to_session
/**
* @test
*
* Tests the Redirect::withLangMessage() method.
*/
public function should_flash_language_messages_with_type_to_session()
{
$messages = new \Jgallred\Simplemessage\Messaging\Typed\Messages();
$this->mock_session->shouldReceive('get')->andReturn($messages);
$this->mock_url->shouldReceive('to')->andReturn('/home');
$this->mock_url->shouldReceive('getRequest')->andReturn(Mockery::mock('\\Illuminate\\Http\\Request'));
$this->mock_session->shouldReceive('flash')->atLeast(1)->with('messages', $messages);
$this->mock_translator->shouldReceive('get')->atLeast(1)->with('simplemessage::test.test_line')->andReturn('used for unit testing');
$this->redirector->to('')->withLangMessage('simplemessage::test.test_line', 'success');
$this->assertCount(1, $messages);
$this->assertEquals('used for unit testing', $messages->first()->text);
$this->assertEquals('success', $messages->first()->type);
}