Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/tests/phpunit/unit/includes/GlobalFunctions/WfStringToBoolTest.php
Ðазад
<?php /** * @group GlobalFunctions * @covers ::wfStringToBool */ class WfStringToBoolTest extends MediaWikiUnitTestCase { public function getTestCases() { return [ [ 'true', true ], [ 'on', true ], [ 'yes', true ], [ 'TRUE', true ], [ 'YeS', true ], [ 'On', true ], [ '1', true ], [ '+1', true ], [ '01', true ], [ '-001', true ], [ ' 1', true ], [ '-1 ', true ], [ '', false ], [ '0', false ], [ 'false', false ], [ 'NO', false ], [ 'NOT', false ], [ 'never', false ], [ '!&', false ], [ '-0', false ], [ '+0', false ], [ 'forget about it', false ], [ ' on', false ], [ 'true ', false ], ]; } /** * @dataProvider getTestCases * @param string $str * @param bool $bool */ public function testStr2Bool( $str, $bool ) { if ( $bool ) { $this->assertTrue( wfStringToBool( $str ) ); } else { $this->assertFalse( wfStringToBool( $str ) ); } } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка