| Current Path : /home/happyrenas/old/happy-and-pay.fr/administration/templates/admin3/mangopay/tests/suites/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/old/happy-and-pay.fr/administration/templates/admin3/mangopay/tests/suites/all.php |
<?php
namespace MangoPay\Tests;
require_once '../simpletest/autorun.php';
/**
* Runs all test cases
*/
class All extends \TestSuite {
function __construct() {
parent::__construct();
$this->collect('../cases', new TestCasesCollector());
}
}
class TestCasesCollector extends \SimpleCollector {
protected function isHidden($filename) {
// ignore base.php: with abstract test case class (throws Bad TestSuite [No runnable test cases] otherwise)
if ($filename == "base.php" || $filename == "index.php")
return true;
return parent::isHidden($filename);
}
}