rcrowe\Hippy\Tests\Message\FormatTest::testSetText PHP Method

testSetText() public method

public testSetText ( )
    public function testSetText()
    {
        $message = new Message();
        $message->setText('egg and spoon race');
        $this->assertEquals($message->getMessage(), 'egg and spoon race');
        $message->setText('<a href="#">hello</a>');
        $this->assertEquals($message->getMessage(), '<a href="#">hello</a>');
        $this->assertEquals($message->getMessageFormat(), Message::FORMAT_TEXT);
    }