Files
yusheng-php/extend/shengwang/test/TestTool.php
2025-08-07 20:21:47 +08:00

16 lines
343 B
PHP

<?php
function assertEqual($expect, $actual)
{
if ($expect != $actual) {
echo("\n assert failed");
echo("\n expect:\n " . $expect);
echo("\n actual:\n " . $actual);
echo("\n");
} else {
echo("assert ok\n");
echo("\n");
}
}
?>