Current Path : /home/escuelai/public_html/it/vendor/html2text/html2text/test/ |
Current File : /home/escuelai/public_html/it/vendor/html2text/html2text/test/PrintTest.php |
<?php namespace Html2Text; class PrintTest extends \PHPUnit_Framework_TestCase { const TEST_HTML = 'Hello, "<b>world</b>"'; const EXPECTED = 'Hello, "WORLD"'; public function setUp() { $this->html = new Html2Text(self::TEST_HTML); $this->expectOutputString(self::EXPECTED); } public function testP() { $this->html->p(); } public function testPrint_text() { $this->html->print_text(); } }