rcrowe\Hippy\Tests\Message\MessageTest::testSetNotification PHP Method

testSetNotification() public method

public testSetNotification ( )
    public function testSetNotification()
    {
        $message = new Message(true);
        $this->assertTrue($message->getNotification());
        $message = new Message();
        $message->setNotification();
        $this->assertTrue($message->getNotification());
    }