diff options
author | wei <> | 2006-07-05 07:45:41 +0000 |
---|---|---|
committer | wei <> | 2006-07-05 07:45:41 +0000 |
commit | e7e7c7403b1ffffdf1a7a4bb9e1de752fe1c72db (patch) | |
tree | 08ef806c2e72a6d14367797c765d3fb8dfa0a1d6 /tests/UnitTests/framework/utApplication.php | |
parent | dfa5aa5fbf11f89ce483c58016465ddc3921f082 (diff) |
clean up tests
Diffstat (limited to 'tests/UnitTests/framework/utApplication.php')
-rw-r--r-- | tests/UnitTests/framework/utApplication.php | 25 |
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 |