This commit is contained in:
Madhura Jayaratne 2011-10-02 07:11:57 +05:30
parent 50293004ad
commit e15ff037e3

View File

@ -33,7 +33,7 @@ class PMA_showPHPDocu_test extends PHPUnit_Framework_TestCase
$target = "docu";
$lang = _pgettext('PHP documentation language', 'en');
$expected = '<a href="./url.php?url=http%3A%2F%2Fphp.net%2Fmanual%2F' . $lang
. '%2F' . $target . '&amp;server=99&amp;lang=en&amp;token=token"'
. '%2F' . $target . '&amp;server=99&amp;lang=en&amp;token=token'
. '" target="documentation"><img src="themes/dot.gif" title="'
. __('Documentation') . '" alt="' . __('Documentation') . '" class="icon ic_b_help" /></a>';
@ -47,7 +47,7 @@ class PMA_showPHPDocu_test extends PHPUnit_Framework_TestCase
$target = "docu";
$lang = _pgettext('PHP documentation language', 'en');
$expected = '[<a href="./url.php?url=http%3A%2F%2Fphp.net%2Fmanual%2F' . $lang
. '%2F' . $target . '&amp;server=99&amp;lang=en&amp;token=token"'
. '%2F' . $target . '&amp;server=99&amp;lang=en&amp;token=token'
. '" target="documentation">' . __('Documentation') . '</a>]';
$this->assertEquals($expected, PMA_showPHPDocu($target));