3 * Generic providers for the MediaWiki PHPUnit test suite
5 * @author Antoine Musso
6 * @copyright Copyright © 2011, Antoine Musso
11 class MediaWikiProvide
{
13 /* provide an array of numbers from 1 up to @param $num */
14 private static function createProviderUpTo( $num ) {
16 for ( $i = 1; $i <= $num; $i++
) {
23 /* array of months numbers (as an integer) */
24 public static function Months() {
25 return self
::createProviderUpTo( 12 );
28 /* array of days numbers (as an integer) */
29 public static function Days() {
30 return self
::createProviderUpTo( 31 );
33 public static function DaysMonths() {
36 $months = self
::Months();
38 foreach ( $months as $month ) {
39 foreach ( $days as $day ) {
40 $ret[] = array( $day[0], $month[0] );