From 0090de89b8b23069c1dd71801389dfa063e610b4 Mon Sep 17 00:00:00 2001 From: xue <> Date: Fri, 31 Mar 2006 22:52:19 +0000 Subject: Fixed a few errors caused by incorrect path to cache classes. --- tests/UnitTests/framework/Data/utAPCCache.php | 6 +++--- tests/UnitTests/framework/Data/utDateTimeSimpleFormatter.php | 10 +++++----- tests/UnitTests/framework/Data/utMemCache.php | 2 +- tests/UnitTests/framework/Data/utSqliteCache.php | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) (limited to 'tests') diff --git a/tests/UnitTests/framework/Data/utAPCCache.php b/tests/UnitTests/framework/Data/utAPCCache.php index b9e0f3e8..48458c27 100644 --- a/tests/UnitTests/framework/Data/utAPCCache.php +++ b/tests/UnitTests/framework/Data/utAPCCache.php @@ -2,11 +2,11 @@ require_once(dirname(__FILE__).'/../common.php'); require_once(dirname(__FILE__).'/CacheTestCase.php'); -Prado::using('System.Data.TAPCCache'); +Prado::using('System.Caching.TAPCCache'); class utAPCCache extends CacheTestCase { - + public function testInit() { if(!extension_loaded('apc')) @@ -42,4 +42,4 @@ class utAPCCache extends CacheTestCase } } -?> \ No newline at end of file +?> \ No newline at end of file diff --git a/tests/UnitTests/framework/Data/utDateTimeSimpleFormatter.php b/tests/UnitTests/framework/Data/utDateTimeSimpleFormatter.php index b186e3ff..9c505481 100644 --- a/tests/UnitTests/framework/Data/utDateTimeSimpleFormatter.php +++ b/tests/UnitTests/framework/Data/utDateTimeSimpleFormatter.php @@ -3,7 +3,7 @@ // NOTE: This file must be saved with charset GB2312 require_once(dirname(__FILE__).'/../common.php'); -Prado::using('System.Data.TDateTimeSimpleFormatter'); +Prado::using('System.Util.TDateTimeSimpleFormatter'); class utDateTimeSimpleFormatter extends UnitTestCase { @@ -12,7 +12,7 @@ class utDateTimeSimpleFormatter extends UnitTestCase $time = mktime(0,0,0,12,30,2005); $pattern = "dd-MM-yyyy"; $expect = '30-12-2005'; - + $formatter = new TDateTimeSimpleFormatter($pattern); $this->assertEqual($expect, $formatter->format($time)); @@ -31,13 +31,13 @@ class utDateTimeSimpleFormatter extends UnitTestCase $pattern = "yyyy年MM月dd日"; $expect = "2005年05月06日"; - + $formatter = new TDateTimeSimpleFormatter($pattern, 'GB2312'); $this->assertEqual($expect, $formatter->format($time)); $pattern = "MM/dd/yyyy"; $expect = "05/06/2005"; - + $formatter = new TDateTimeSimpleFormatter($pattern, 'UTF-8'); $this->assertEqual($expect, $formatter->format($time)); @@ -54,7 +54,7 @@ class utDateTimeSimpleFormatter extends UnitTestCase $pattern = "dd-MM-yy"; $value= "06-05-05"; - + $formatter = new TDateTimeSimpleFormatter($pattern); $this->assertEqual($expect, $formatter->parse($value)); diff --git a/tests/UnitTests/framework/Data/utMemCache.php b/tests/UnitTests/framework/Data/utMemCache.php index 26981f63..cbe9bdad 100644 --- a/tests/UnitTests/framework/Data/utMemCache.php +++ b/tests/UnitTests/framework/Data/utMemCache.php @@ -2,7 +2,7 @@ require_once(dirname(__FILE__).'/../common.php'); require_once(dirname(__FILE__).'/CacheTestCase.php'); -Prado::using('System.Data.TMemCache'); +Prado::using('System.Caching.TMemCache'); class utMemCache extends UnitTestCase { diff --git a/tests/UnitTests/framework/Data/utSqliteCache.php b/tests/UnitTests/framework/Data/utSqliteCache.php index 726a5c08..eded351f 100644 --- a/tests/UnitTests/framework/Data/utSqliteCache.php +++ b/tests/UnitTests/framework/Data/utSqliteCache.php @@ -2,7 +2,7 @@ require_once(dirname(__FILE__).'/../common.php'); require_once(dirname(__FILE__).'/CacheTestCase.php'); -Prado::using('System.Data.TSqliteCache'); +Prado::using('System.Caching.TSqliteCache'); class utSqliteCache extends CacheTestCase { -- cgit v1.2.3