Joli\JoliNotif\tests\Notifier\NullNotifierTest::testSendReturnsFalse PHP Method

testSendReturnsFalse() public method

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