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 /
HTML_Progress /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
ancestor.ini
793
B
-rw-r--r--
HTML_Progress_Bug28.php
1.09
KB
-rw-r--r--
HTML_Progress_TestCase_addListener.php
2.7
KB
-rw-r--r--
HTML_Progress_TestCase_DM_new.php
2
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setIncrement.php
2.56
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setMaximum.php
2.82
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setMinimum.php
2.75
KB
-rw-r--r--
HTML_Progress_TestCase_DM_setValue.php
2.79
KB
-rw-r--r--
HTML_Progress_TestCase_getDM.php
2.28
KB
-rw-r--r--
HTML_Progress_TestCase_getString.php
2.41
KB
-rw-r--r--
HTML_Progress_TestCase_getUI.php
2.28
KB
-rw-r--r--
HTML_Progress_TestCase_removeListener.php
2.84
KB
-rw-r--r--
HTML_Progress_TestCase_setAnimSpeed.php
2.75
KB
-rw-r--r--
HTML_Progress_TestCase_setBorderPainted.php
2.35
KB
-rw-r--r--
HTML_Progress_TestCase_setDM.php
2.03
KB
-rw-r--r--
HTML_Progress_TestCase_setIndeterminate.php
2.35
KB
-rw-r--r--
HTML_Progress_TestCase_setModel.php
2.55
KB
-rw-r--r--
HTML_Progress_TestCase_setStringPainted.php
2.35
KB
-rw-r--r--
HTML_Progress_TestCase_setString.php
2.57
KB
-rw-r--r--
HTML_Progress_TestCase_setUI.php
2.03
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getBorderAttributes.php
2.43
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getCellAttributes.php
2.41
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getProgressAttributes.php
2.45
KB
-rw-r--r--
HTML_Progress_TestCase_UI_getStringAttributes.php
2.43
KB
-rw-r--r--
HTML_Progress_TestCase_UI_new.php
1.71
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setCellAttributes.php
2.89
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setCellCoordinates.php
2.88
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setCellCount.php
3.33
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setFillWay.php
2.56
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setOrientation.php
4.05
KB
-rw-r--r--
HTML_Progress_TestCase_UI_setScript.php
2.54
KB
-rw-r--r--
HTML_TestListener.php
1.91
KB
-rw-r--r--
progress3.js
1.36
KB
-rw-r--r--
stylesheet.css
1.3
KB
-rw-r--r--
testsuite.php
2.98
KB
-rw-r--r--
TestUnit.php
1.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : testsuite.php
<?php /** * HTML output for PHPUnit suite tests. * * @version $Id: testsuite.php,v 1.6 2005/08/28 14:12:09 farell Exp $ * @author Laurent Laville <pear@laurent-laville.org> * @package HTML_Progress * @ignore */ require_once 'TestUnit.php'; require_once 'HTML_TestListener.php'; require_once 'HTML/Progress.php'; $title = 'PhpUnit test run, HTML_Progress class'; ?> <html> <head> <title><?php echo $title; ?></title> <link rel="stylesheet" href="./stylesheet.css" type="text/css" /> </head> <body> <h1><?php echo $title; ?></h1> <p> This page runs all the phpUnit self-tests, and produces nice HTML output. </p> <p> Unlike typical test run, <strong>expect many test cases to fail</strong>. Exactly those with <code>pass</code> in their name should succeed. </p> <p> For each test we display both the test result -- <span class="Pass">ok</span>, <span class="Failure">FAIL</span>, or <span class="Error">ERROR</span> -- and also a meta-result -- <span class="Expected">as expected</span>, <span class="Unexpected">UNEXPECTED</span>, or <span class="Unknown">unknown</span> -- that indicates whether the expected test result occurred. Although many test results will be 'FAIL' here, all meta-results should be 'as expected', except for a few 'unknown' meta-results (because of errors) when running in PHP3. </p> <h2>Tests</h2> <?php $testcases = array( 'HTML_Progress_TestCase_addListener', 'HTML_Progress_TestCase_DM_new', 'HTML_Progress_TestCase_DM_setIncrement', 'HTML_Progress_TestCase_DM_setMaximum', 'HTML_Progress_TestCase_DM_setMinimum', 'HTML_Progress_TestCase_DM_setValue', 'HTML_Progress_TestCase_getDM', 'HTML_Progress_TestCase_getString', 'HTML_Progress_TestCase_getUI', 'HTML_Progress_TestCase_removeListener', 'HTML_Progress_TestCase_setAnimSpeed', 'HTML_Progress_TestCase_setBorderPainted', 'HTML_Progress_TestCase_setDM', 'HTML_Progress_TestCase_setIndeterminate', 'HTML_Progress_TestCase_setModel', 'HTML_Progress_TestCase_setString', 'HTML_Progress_TestCase_setStringPainted', 'HTML_Progress_TestCase_setUI', 'HTML_Progress_TestCase_UI_getBorderAttributes', 'HTML_Progress_TestCase_UI_getCellAttributes', 'HTML_Progress_TestCase_UI_getProgressAttributes', 'HTML_Progress_TestCase_UI_getStringAttributes', 'HTML_Progress_TestCase_UI_new', 'HTML_Progress_TestCase_UI_setCellAttributes', 'HTML_Progress_TestCase_UI_setCellCoordinates', 'HTML_Progress_TestCase_UI_setCellCount', 'HTML_Progress_TestCase_UI_setFillWay', 'HTML_Progress_TestCase_UI_setOrientation', 'HTML_Progress_TestCase_UI_setScript', ); $suite = new PHPUnit_TestSuite(); foreach ($testcases as $testcase) { include_once $testcase . '.php'; $suite->addTestSuite($testcase); } $listener = new HTML_TestListener(); $result = TestUnit::run($suite, $listener); $result->removeListener($listener); $result->report(); ?> </body> </html>
Close