mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2025-01-08 12:54:08 +00:00
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;
|
||
|
}
|
||
|
|
||
|
}
|