Joli\JoliNotif\tests\Notifier\NullNotifierTest::testSendReturnsFalse PHP 메소드

testSendReturnsFalse() 공개 메소드

    public function testSendReturnsFalse()
    {
        $notifier = $this->getNotifier();
        $notification = new Notification();
        $notification->setBody('The notification body');
        $this->assertFalse($notifier->send($notification));
    }