예제 #1
0
파일: NoteTest.php 프로젝트: alipek/rtf
    function testShouldAssembleNoteAsHTML()
    {
        //return $this->markTestIncomplete();
        $startNote = '\\rtf1\\ansi\\ansicpg1251\\deff0\\deflang1049{\\fonttbl{\\f0\\fnil\\fcharset0 Microsoft Sans Serif;}{\\f1\\fnil\\fcharset0 fnilMicrosoft Sans Serif;}{\\f2\\fnil\\fcharset204 fnilMicrosoft Sans Serif;}}
4/4/2013 3:12:46 PM - jribakoff: test';
        $note = new JoshRibakoff_Note();
        $note->setRTF($startNote);
        $expectedNote = '4/4/2013 3:12:46 PM - jribakoff: test';
        $this->assertEquals($expectedNote, $note->formatHTML(), 'should format note as HTML');
    }