1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<?php
use PHPUnit\Framework\TestCase;
use RtfHtmlPhp\Document;
use RtfHtmlPhp\Html\HtmlFormatter;
class ExtraParagraphTest extends TestCase
{
public function testExtraParagraph()
{
$rtf = file_get_contents("tests/rtf/extra-closing-paragraph.rtf");
$document = new Document($rtf);
$formatter = new HtmlFormatter();
$html = $formatter->format($document);
$this->assertEquals(
'<p><span style="font-weight:bold;font-family:Calibri;font-size:16px;color:#000000;">Conditions<br/></span>'
. '<span style="font-family:Calibri;font-size:16px;color:#000000;">Delivery: FCA in our warehouse in Rotterdam<br/>'
. 'Lead Time: 25 working days after confirmation, subject to prior sale<br/>Payment: 60 days after invoice date<br/>'
. 'Quote validity: 30 days</span></p>',
$html
);
}
}
|