Gc\View\Helper\ToolsTest::testDebug PHP Method

testDebug() public method

Test
public testDebug ( ) : void
return void
    public function testDebug()
    {
        $result = $this->object->__invoke('debug', 'string');
        $result = str_replace(array(PHP_EOL, "\n"), '_', $result);
        $expected = '<pre>string</pre>';
        $this->assertEquals($expected, $result);
    }