mediawiki-extensions-Math/tests/phpunit/MathMLHttpRequestTester.php
Umherirrender 0be18dc97d Move test helper classes into own class file
Also fix the name of one test file to match the file name

Change-Id: If622e925645cf21bf726f4db0f779182d78bbd73
2019-12-06 21:47:52 +01:00

23 lines
342 B
PHP

<?php
/**
* Helper class for testing
* @author physikerwelt
* @see MWHttpRequestTester
*/
class MathMLHttpRequestTester {
public static function factory() {
return new self();
}
public static function execute() {
return new MathMLTestStatus();
}
public static function getContent() {
return MathMathMLTest::$content;
}
}