diff options
author | Josh Hoyt <josh@janrain.com> | 2006-01-13 21:36:30 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-01-13 21:36:30 +0000 |
commit | 5380659d091678c2ac89c2da0221c80a88204cc6 (patch) | |
tree | 3fefd3ca54ed3bec3953403965ac752f6cc0f850 /admin/webtest.php | |
parent | 46b6cf71c681636381c61b833a6a4046e33e022e (diff) | |
download | php-openid-5380659d091678c2ac89c2da0221c80a88204cc6.zip php-openid-5380659d091678c2ac89c2da0221c80a88204cc6.tar.gz php-openid-5380659d091678c2ac89c2da0221c80a88204cc6.tar.bz2 |
[project @ Move webtest.php into admin]
Diffstat (limited to 'admin/webtest.php')
-rw-r--r-- | admin/webtest.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/admin/webtest.php b/admin/webtest.php new file mode 100644 index 0000000..1d3a69d --- /dev/null +++ b/admin/webtest.php @@ -0,0 +1,12 @@ +<?php + +require_once('Tests/TestDriver.php'); + +$suites = loadSuite(); + +// Create and run the user interface +$gui = new PHPUnit_GUI_HTML(); +$gui->addSuites($suites); +$gui->show(); + +?> |