2003-06-11 22:11:32 +00:00
|
|
|
#!/usr/local/bin/php -q
|
|
|
|
<?php {
|
|
|
|
// $Id$
|
|
|
|
|
2002-10-04 05:30:44 +00:00
|
|
|
// This tests whether the most basic mechanisms are working
|
|
|
|
// Also whether stderr output is reported correctly
|
2003-03-29 07:25:12 +00:00
|
|
|
// Also tests if water levels are working correctly
|
2002-10-04 05:30:44 +00:00
|
|
|
|
2003-06-17 01:36:47 +00:00
|
|
|
include_once("test_uc.inc");
|
2003-06-11 23:09:11 +00:00
|
|
|
test_msg("standard upper_case application");
|
2003-04-29 17:51:58 +00:00
|
|
|
|
2003-06-17 01:36:47 +00:00
|
|
|
$project = new ProjectUC;
|
|
|
|
$project->start_servers_and_host();
|
|
|
|
$project->validate_all_and_stop();
|
2003-04-29 17:51:58 +00:00
|
|
|
|
2003-06-11 22:11:32 +00:00
|
|
|
test_done();
|
|
|
|
} ?>
|