mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-27 17:01:07 +00:00
0be18dc97d
Also fix the name of one test file to match the file name Change-Id: If622e925645cf21bf726f4db0f779182d78bbd73
23 lines
342 B
PHP
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;
|
|
}
|
|
|
|
}
|