X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FFormOptionsTest.php;h=da08670f57bee7b1eff5351c570b501bd28b3d53;hp=2ee8b9833baffae31da5396d7b30c6ccf745aaa4;hb=f17f841a9dfa1bee3f8ed47a09f06d1226452573;hpb=9e07891ca7cd2f83004206c637e50da2a0419a31 diff --git a/tests/phpunit/includes/FormOptionsTest.php b/tests/phpunit/includes/FormOptionsTest.php index 2ee8b9833b..da08670f57 100644 --- a/tests/phpunit/includes/FormOptionsTest.php +++ b/tests/phpunit/includes/FormOptionsTest.php @@ -42,15 +42,19 @@ class FormOptionsTest extends MediaWikiTestCase { private function assertGuessBoolean( $data ) { $this->guess( FormOptions::BOOL, $data ); } + private function assertGuessInt( $data ) { $this->guess( FormOptions::INT, $data ); } + private function assertGuessFloat( $data ) { $this->guess( FormOptions::FLOAT, $data ); } + private function assertGuessString( $data ) { $this->guess( FormOptions::STRING, $data ); } + private function assertGuessArray( $data ) { $this->guess( FormOptions::ARR, $data ); } @@ -62,6 +66,7 @@ class FormOptionsTest extends MediaWikiTestCase { FormOptions::guessType( $data ) ); } + /* @} */ /**