Gave the table sequences their own config values in $CC_CONFIG. This allows us to change their names from one single place. Fixed WHITE_SCREEN_OF_DEATH warnings. Added PHPUnit to the pear library. Started adding unit tests in storageServer/var/tests.
9 lines
149 B
PHP
9 lines
149 B
PHP
<?php
|
|
|
|
require_once 'UnitTests.php';
|
|
|
|
$suite = new PHPUnit_TestSuite("BasicStorTest");
|
|
$result = PHPUnit::run($suite);
|
|
|
|
echo $result->toString();
|
|
?>
|