PHP Classes

File: tests/runtests.php

Recommend this page to a friend!
  Classes of James Glenlake   Mr. FTP   tests/runtests.php   Download  
File: tests/runtests.php
Role: Unit test script
Content type: text/plain
Description: A script to run the test
Class: Mr. FTP
Setup FTP connections and transfer files
Author: By
Last change:
Date: 20 years ago
Size: 173 bytes
 

Contents

Class file image Download
<?php

require_once 'mrftp.test.php';
require_once
'PHPUnit.php';

$suite = new PHPUnit_TestSuite('MrFTP_Test');
$result = PHPUnit::run($suite);

echo
$result->toHTML();

?>