PHP code example of noeldemartin / laravel-dusk-mocking
1. Go to this page and download the library: Download noeldemartin/laravel-dusk-mocking library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
noeldemartin / laravel-dusk-mocking example snippets
use NoelDeMartin\LaravelDusk\Browser;
...
protected function newBrowser($driver)
{
return new Browser($driver);
}
public function testOrderShipping()
{
$this->browse(function ($browser) use ($user) {
$mail = $browser->fake(Mail::class);
$browser->visit('...')
// Perform order shipping...
->assertSee('Order purchased! Check your email for details!');
$mail->assertSent(OrderShipped::class, function ($mail) use ($order) {
return $mail->order->id === $order->id;
});
// Assert a message was sent to the given users...
$mail->assertSent(OrderShipped::class, function ($mail) use ($user) {
return $mail->hasTo($user->email) &&
$mail->hasCc('...') &&
$mail->hasBcc('...');
});
// Assert a mailable was sent twice...
$mail->assertSent(OrderShipped::class, 2);
// Assert a mailable was not sent...
$mail->assertNotSent(AnotherMailable::class);
});
}
protected function newBrowser($driver)
{
Browser::$javascriptRequestsTimeout = 5;
return new Browser($driver);
}
public function setUp()
{
parent::setUp();
// Register fake mocks
Mocking::registerFake(Mail::class, MyMailFake::class);
}
$this->browse(function (Browser $browser) {
$browser->registerFake(Mail::class, MyMailFake::class);
$mail = $browser->mock(Mail::class);
// Proceed with the test
});
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.