golden hour
/opt/alt/php72/usr/share/pear/test/Structures_Graph/tests
⬆️ Go Up
Upload
File/Folder
Size
Actions
AcyclicTestTest.php
1.28 KB
Del
OK
AllTests.php
444 B
Del
OK
BasicGraphTest.php
8.85 KB
Del
OK
TopologicalSorterTest.php
1.83 KB
Del
OK
helper.inc
361 B
Del
OK
Edit: AllTests.php
<?php require_once dirname(__FILE__) . '/helper.inc'; class Structures_Graph_AllTests { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('Structures_Graph Tests'); $dir = new GlobIterator(dirname(__FILE__) . '/*Test.php'); $suite->addTestFiles($dir); return $suite; } }
Save