wiki.techinc.nl/tests/phpunit/includes/GlobalFunctions
Kevin Israel 8ea3dc7faa Deprecate a few one-line global functions
Additions to the PHP language made these redundant.

* wfArrayLookup() is similar to PHP 5.1's array_intersect_key()
  yet has serious limitations. For example, integer string values
  are implicitly cast to integers.

* wfArrayMerge() can be replaced by PHP 5.3's array_replace().

* wfTime() just returns microtime( true ).

Change-Id: I2c6844fc48a265d2d885083b5bed8df846e0aaf4
2013-07-05 21:06:11 -04:00
..
GlobalTest.php Deprecate a few one-line global functions 2013-07-05 21:06:11 -04:00
GlobalWithDBTest.php Update code formatting 2013-04-26 14:21:20 +00:00
README
wfAssembleUrlTest.php Update code formatting 2013-04-26 14:21:20 +00:00
wfBaseConvertTest.php Update code formatting 2013-04-26 14:21:20 +00:00
wfBaseNameTest.php Tests: Make phpunit providers "public static". 2013-03-22 03:12:37 +01:00
wfBCP47Test.php wfBCP47Test: Remove commented-out testcases 2013-07-01 20:46:47 +00:00
wfExpandUrlTest.php Update code formatting 2013-04-26 14:21:20 +00:00
wfGetCallerTest.php Update code formatting 2013-04-26 14:21:20 +00:00
wfParseUrlTest.php Add tests for wfParseUrl() 2013-02-22 01:05:15 +01:00
wfRemoveDotSegmentsTest.php phpcs: Naming of GlobalFunctions tests classes. 2013-02-22 01:01:41 +01:00
wfShorthandToIntegerTest.php Update code formatting 2013-04-26 14:21:20 +00:00
wfTimestampTest.php Update code formatting 2013-04-26 14:21:20 +00:00
wfUrlencodeTest.php phpcs: Naming of GlobalFunctions tests classes. 2013-02-22 01:01:41 +01:00

This directory hold tests for includes/GlobalFunctions.php file
which is a pile of functions.