wiki.techinc.nl/tests/phpunit/unit/includes/FormOptionsTest.php
Func 4d1da6f7f8 phpunit: Update @covers annotations for namespaced classes
We renamed many classes to be namespaced, but the `@covers` and
`@coversDefaultClass` annotations weren't updated properly.

PHPUnit didn't support short cover annotations with `use` statements,
these didn't trigger any errors yet, because they are class alias.

This patch is populated by a modified version of PhpunitAnnotationsSniff.

Change-Id: I6c602290a30099239b17d2dc0d67b1488b4eaeeb
2023-05-27 17:43:12 +08:00

51 lines
1.3 KiB
PHP

<?php
use MediaWiki\Html\FormOptions;
/**
* Test class for FormOptions methods.
*
* Copyright © 2011, Antoine Musso
*
* @author Antoine Musso
*/
class FormOptionsTest extends MediaWikiUnitTestCase {
/**
* @covers MediaWiki\Html\FormOptions::guessType
* @dataProvider provideTypeDetection
*/
public function testGuessTypeDetection( $expectedType, $data ) {
$this->assertEquals(
$expectedType,
FormOptions::guessType( $data )
);
}
public static function provideTypeDetection() {
yield [ FormOptions::BOOL, true ];
yield [ FormOptions::BOOL, false ];
yield [ FormOptions::INT, 0 ];
yield [ FormOptions::INT, -5 ];
yield [ FormOptions::INT, 5 ];
yield [ FormOptions::INT, 0x0F ];
yield [ FormOptions::FLOAT, 0.0 ];
yield [ FormOptions::FLOAT, 1.5 ];
yield [ FormOptions::FLOAT, 1e3 ];
yield [ FormOptions::STRING, 'true' ];
yield [ FormOptions::STRING, 'false' ];
yield [ FormOptions::STRING, '5' ];
yield [ FormOptions::STRING, '0' ];
yield [ FormOptions::STRING, '1.5' ];
yield [ FormOptions::ARR, [ 'foo' ] ];
}
/**
* @covers MediaWiki\Html\FormOptions::guessType
*/
public function testGuessTypeOnNullThrowException() {
$this->expectException( MWException::class );
$this->expectExceptionMessage( 'Unsupported datatype' );
FormOptions::guessType( null );
}
}