| Current File : /var/www/finance.uiet.co.in/UietFinance/vendor/mckenziearts/laravel-notify/tests/NotifyTest.php |
<?php
use Mckenziearts\Notify\LaravelNotify;
use PHPUnit\Framework\TestCase;
class NotifyTest extends TestCase
{
protected $session;
protected $notify;
public function setUp(): void
{
$this->session = Mockery::spy('Mckenziearts\Notify\Storage\Session');
$this->notify = new LaravelNotify($this->session);
}
}