summaryrefslogtreecommitdiff
path: root/tests/UnitTests/framework/utApplication.php
diff options
context:
space:
mode:
authorxue <>2006-07-07 14:54:15 +0000
committerxue <>2006-07-07 14:54:15 +0000
commit61bb16ee2e5f0a66234e1575242169a10fde47b5 (patch)
tree3ee24dcc36ceae2c213130df1ea3d5c9fc110a27 /tests/UnitTests/framework/utApplication.php
parent7b84938b1b5964f2274d66e28ba17435924ffe35 (diff)
Merge from 3.0 branch till 1253.
Diffstat (limited to 'tests/UnitTests/framework/utApplication.php')
-rw-r--r--tests/UnitTests/framework/utApplication.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/UnitTests/framework/utApplication.php b/tests/UnitTests/framework/utApplication.php
deleted file mode 100644
index 603f9fc3..00000000
--- a/tests/UnitTests/framework/utApplication.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-require_once(dirname(__FILE__).'/common.php');
-require_once(FRAMEWORK_DIR.'/TApplication.php');
-
-class utApplication extends UnitTestCase
-{
- public function testCreateApplication()
- {
- $dir=getcwd();
- chdir(dirname(__FILE__));
- $application=new TApplication(dirname(__FILE__).'/TestSystem/protected/application.xml');
- try
- {
- new TApplication(dirname(__FILE__).'/TestSystem/protected/application.xml');
- }
- catch(TInvalidOperationException $e)
- {
- $this->pass();
- }
- chdir($dir);
- }
-}
-
-?> \ No newline at end of file