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
.PHONY: help test phpunit coverage warning destructive parser noparser safe databaseless list-groups .DEFAULT: warning SHELL = /bin/sh CONFIG_FILE = ${PWD}/suite.xml PHP = php PU = ${PHP} phpunit.php --configuration ${CONFIG_FILE} ${FLAGS} all test: warning warning: @echo "Run 'make help' to get usage" @echo "" @echo "WARNING -- some tests are DESTRUCTIVE and will alter your wiki." @echo "DO NOT RUN THESE TESTS on a production wiki." @echo "" @echo "Until the default tests are made non-destructive, you can run" @echo "the destructive tests like so:" @echo "" @echo " make destructive" @echo "" @echo "Some tests are expected to be safe, you can run them with" @echo "" @echo " make safe" @echo "" @echo "You are recommended to run the tests with read-only credentials." @echo "" @echo "If you don't have a database running, you can still run" @echo "" @echo " make databaseless" @echo "" destructive: phpunit phpunit: ${PU} tap: ${PU} --tap coverage: ${PU} --coverage-html ../../docs/code-coverage parser: ${PU} --group Parser noparser: ${PU} --exclude-group Parser,Broken,Stub safe: ${PU} --exclude-group Broken,Destructive,Stub databaseless: ${PU} --exclude-group Broken,Destructive,Database,Stub database: ${PU} --exclude-group Broken,Destructive,Stub --group Database list-groups: ${PU} --list-groups help: # Usage: # make <target> [OPTION=value] # # Targets: # phpunit (default) Run all the tests with phpunit # tap Run the tests individually through Test::Harness's prove(1) # help You're looking at it! # coverage Run the tests and generates an HTML code coverage report # You will need the Xdebug PHP extension for the latter. # [no]parser Skip or only run Parser tests # # list-groups List available Tests groups. # # Options: # CONFIG_FILE Path to a PHPUnit configuration file (default: suite.xml) # FLAGS Additional flags to pass to PHPUnit # PHP Path to php