10 lines
140 B
PHP
10 lines
140 B
PHP
<?php
|
|
|
|
/* common functions used in appdb unit tests */
|
|
|
|
function test_start($sFunctionName)
|
|
{
|
|
echo $sFunctionName."() starting\n";
|
|
}
|
|
|
|
?>
|