2020-05-12 18:22:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use MediaWiki\Extension\Math\InputCheck\InputCheckFactory;
|
|
|
|
use MediaWiki\Extension\Math\InputCheck\MathoidChecker;
|
|
|
|
|
|
|
|
/**
|
2021-04-07 22:22:05 +00:00
|
|
|
* @covers \MediaWiki\Extension\Math\InputCheck\InputCheckFactory
|
2020-05-12 18:22:37 +00:00
|
|
|
*/
|
|
|
|
class InputCheckFactoryTest extends MediaWikiUnitTestCase {
|
|
|
|
use FactoryArgTestTrait;
|
|
|
|
|
|
|
|
protected static function getFactoryClass() {
|
|
|
|
return InputCheckFactory::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static function getInstanceClass() {
|
|
|
|
return MathoidChecker::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static function getExtraClassArgCount() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is required since the FactoryArgTestTrait uses the full classname.
|
|
|
|
* Testing without overwriting this function would result in
|
|
|
|
*
|
|
|
|
* ReflectionException: Method MediaWiki\Extension\Math\InputCheck\InputCheckFactory::
|
|
|
|
* newMediaWiki\Extension\Math\InputCheck\MathoidChecker() does not exist
|
|
|
|
*
|
|
|
|
* see T253613
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getFactoryMethodName() {
|
|
|
|
return 'new' . ( new \ReflectionClass( MathoidChecker::class ) )->getShortName();
|
|
|
|
}
|
|
|
|
|
2021-07-22 11:56:28 +00:00
|
|
|
protected function setUp(): void {
|
2020-05-12 18:22:37 +00:00
|
|
|
parent::setUp();
|
|
|
|
$this->markTestSkipped( 'FactoryArgTestTrait can not yet handle the parameter numbers.' );
|
|
|
|
}
|
|
|
|
}
|