2
0
forked from Wavyzz/dolibarr

More test

This commit is contained in:
Laurent Destailleur
2018-04-05 12:59:01 +02:00
parent 0de65b7822
commit b210360220

View File

@@ -465,6 +465,10 @@ class FunctionsLibTest extends PHPUnit_Framework_TestCase
$after=dol_string_nohtmltag($text,1);
$this->assertEquals("DEF",$after,"test7");
$text='<a href="/myurl" title="<u>A title</u>">HIJ</a>';
$after=dol_string_nohtmltag($text,0);
$this->assertEquals("HIJ",$after,"test8");
return true;
}