class HighLighterTest extends \PHPUnit_Framework_TestCase{
8
9
/**
10
* @test
11
*/
12
public function HighLightTest()
13
{
14
$heighlighter = new HighLighter('');
15
$outPut = $heighlighter->HighLight('Lorem Ipsum http://www.google.co.in lorem ipsum dummy text added for the testing purpose by [email protected]');
16
$expected_output = 'Lorem Ipsum <a href="http://www.google.co.in" target="_blank">http://www.google.co.in</a> lorem ipsum dummy text added for the testing purpose by <a href="mailto:[email protected]">[email protected]</a>';