paul.baranowski 7ea2352ca3 Started to put metadata into the files table.
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.
2010-09-14 10:18:53 -04:00

9 lines
149 B
PHP

<?php
require_once 'UnitTests.php';
$suite = new PHPUnit_TestSuite("BasicStorTest");
$result = PHPUnit::run($suite);
echo $result->toString();
?>