Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
tests /
phpunit /
Delete
Unzip
Name
Size
Permission
Date
Action
data
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
docs
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
includes
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
languages
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
maintenance
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
mocks
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
skins
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
specials
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
structure
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
suites
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
tests
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
LessFileCompilationTest.php
1.37
KB
-rw-r--r--
2016-11-28 20:20
Makefile
2.04
KB
-rw-r--r--
2016-11-28 20:20
MediaWikiLangTestCase.php
633
B
-rw-r--r--
2016-11-28 20:20
MediaWikiPHPUnitCommand.php
1007
B
-rw-r--r--
2011-06-02 21:32
MediaWikiPHPUnitTestListener.php
3.14
KB
-rw-r--r--
2016-11-28 20:20
MediaWikiTestCase.php
50.94
KB
-rw-r--r--
2016-11-28 20:20
README
1.21
KB
-rw-r--r--
2016-11-28 20:20
ResourceLoaderTestCase.php
3.67
KB
-rw-r--r--
2016-11-28 20:20
TODO
986
B
-rw-r--r--
2016-11-28 20:20
bootstrap.php
748
B
-rw-r--r--
2016-11-28 20:20
install-phpunit.sh
807
B
-rwxr-xr-x
2011-06-04 23:34
phpunit.php
4.78
KB
-rwxr-xr-x
2016-11-28 20:20
run-tests.bat
45
B
-rw-r--r--
2016-11-28 20:20
suite.xml
2.21
KB
-rw-r--r--
2016-11-28 20:20
Save
Rename
<?php class MediaWikiPHPUnitCommand extends PHPUnit_TextUI_Command { static $additionalOptions = array( 'regex=' => false, 'file=' => false, 'keep-uploads' => false, ); public function __construct() { foreach( self::$additionalOptions as $option => $default ) { $this->longOptions[$option] = $option . 'Handler'; } } public static function main( $exit = true ) { $command = new self; $command->run($_SERVER['argv'], $exit); } public function __call( $func, $args ) { if( substr( $func, -7 ) == 'Handler' ) { if( is_null( $args[0] ) ) $args[0] = true; //Booleans self::$additionalOptions[substr( $func, 0, -7 ) ] = $args[0]; } } public function showHelp() { parent::showHelp(); print <<<EOT ParserTest-specific options: --regex="<regex>" Only run parser tests that match the given regex --file="<filename>" Prints the version and exits. --keep-uploads Re-use the same upload directory for each test, don't delete it EOT; } }