A fork of potaka/bbcode to handle future maintenance
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
359B

  1. <?php
  2. /**
  3. * Description of BoldTest
  4. *
  5. * @author po_taka <angel.koilov@gmail.com
  6. */
  7. class BoldTest extends PHPUnit_Framework_TestCase{
  8. public function testToHtml() {
  9. $tag = new Potaka\BbCode\Tag\Bold();
  10. $bbCode = '[b]bold[/b]';
  11. $html = $tag->format($bbCode);
  12. $this->assertEquals($html, '<b>bold</b>');
  13. }
  14. }