#!/usr/bin/php | // +-----------------------------------------------------------------------------+ // // Place development Structures_Graph ahead in the include_path ini_set('include_path', realpath(dirname(__FILE__) . "/..") . ":.:" . ini_get('include_path')); require_once 'testCase/BasicGraph.php'; require_once 'PHPUnit.php'; $suite = new PHPUnit_TestSuite(); $suite->addTest(new PHPUnit_TestSuite('BasicGraph')); $result = PHPUnit::run($suite); echo $result->toString(); ?>