build on PRs; nitpicks
[plcapi.git] / tests / PolyfillTestCase7.php
1 <?php
2
3 use Yoast\PHPUnitPolyfills\TestCases\TestCase;
4
5 abstract class PhpXmlRpc_PolyfillTestCase extends TestCase
6 {
7     public function _run($result = null) {
8         return parent::run($result);
9     }
10
11     public static function _fail() {}
12
13     public function run(PHPUnit_Framework_TestResult $result = null) {
14         return $this->_run($result);
15     }
16
17     public static function fail($message = '') {
18         static::_fail($message);
19         self::fail($message);
20     }
21 }