Jobby\Tests\BackgroundJobTest::testNotSendMailOnMissingRecipients PHP Метод

testNotSendMailOnMissingRecipients() публичный Метод

    public function testNotSendMailOnMissingRecipients()
    {
        $helper = $this->getMock('Jobby\\Helper', ['sendMail']);
        $helper->expects($this->never())->method('sendMail');
        $this->runJob(['closure' => function () {
            return false;
        }, 'recipients' => ''], $helper);
    }