summaryrefslogtreecommitdiff
path: root/tests/UnitTests/simpletest/test/remote_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/UnitTests/simpletest/test/remote_test.php')
-rw-r--r--tests/UnitTests/simpletest/test/remote_test.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/UnitTests/simpletest/test/remote_test.php b/tests/UnitTests/simpletest/test/remote_test.php
new file mode 100644
index 00000000..16c82b31
--- /dev/null
+++ b/tests/UnitTests/simpletest/test/remote_test.php
@@ -0,0 +1,17 @@
+<?php
+ // $Id: remote_test.php,v 1.4 2004/04/07 19:12:13 lastcraft Exp $
+ require_once('../remote.php');
+ require_once('../reporter.php');
+
+ // The following URL will depend on your own installation.
+ $base_url = 'http://uno/simple/';
+
+ $test = &new GroupTest('Remote tests');
+ $test->addTestCase(new RemoteTestCase(
+ $base_url . 'test/visual_test.php?xml=yes',
+ $base_url . 'test/visual_test.php?xml=yes&dry=yes'));
+ if (SimpleReporter::inCli()) {
+ exit ($test->run(new XmlReporter()) ? 0 : 1);
+ }
+ $test->run(new HtmlReporter());
+?> \ No newline at end of file