wiki.techinc.nl/tests/phpunit/includes/GlobalFunctions/wfShorthandToIntegerTest.php
Timo Tijhof b36d883017 Tests: Make phpunit providers "public static".
Follows-up I9d2b148e57 (including phpunit/languages this time).

Bug: 46434
Change-Id: I30e5efcd88c516121c454676bd7a18f9b7c8fca6
2013-03-22 03:12:37 +01:00

28 lines
763 B
PHP

<?php
class WfShorthandToIntegerTest extends MediaWikiTestCase {
/**
* @dataProvider provideABunchOfShorthands
*/
function testWfShorthandToInteger( $input, $output, $description ) {
$this->assertEquals(
wfShorthandToInteger( $input ),
$output,
$description
);
}
public static function provideABunchOfShorthands() {
return array(
array( '', -1, 'Empty string' ),
array( ' ', -1, 'String of spaces' ),
array( '1G', 1024 * 1024 * 1024, 'One gig uppercased' ),
array( '1g', 1024 * 1024 * 1024, 'One gig lowercased' ),
array( '1M', 1024 * 1024, 'One meg uppercased' ),
array( '1m', 1024 * 1024, 'One meg lowercased' ),
array( '1K', 1024, 'One kb uppercased' ),
array( '1k', 1024, 'One kb lowercased' ),
);
}
}