Ejemplo n.º 1
0
 /**
  * Test 
  *
  * @return void
  *
  *
  */
 public function testFilterNl2br()
 {
     $tf = new \Anax\Content\CTextFilter();
     $html = "\n";
     $expected = "<br />\nhi";
     $res = $tf->doFilter($html, 'nl2br');
     $this->assertEquals($expected, $res, "Filter nl2bt failed.");
 }