Changeset 2
- Timestamp:
- 11/10/2005 10:50:52 AM (3 years ago)
- Location:
- trunk/tests/UnitTests/framework
- Files:
-
- 2 modified
-
common.php (modified) (1 diff)
-
index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/UnitTests/framework/common.php
r1 r2 18 18 function __autoload($className) 19 19 { 20 require_once($className );20 require_once($className.Prado::CLASS_FILE_EXT); 21 21 } 22 22 -
trunk/tests/UnitTests/framework/index.php
r1 r2 16 16 { 17 17 $fullpath="$path/$entry"; 18 if($entry!=='.' && $entry!=='..' && is_dir($fullpath))18 if($entry!=='.' && $entry!=='..' && $entry!=='.svn' && is_dir($fullpath)) 19 19 { 20 20 $folder=new TestFolder($fullpath,$rootPath,$rootUri); … … 49 49 if(is_file($path.'/'.$entry) && strncmp($entry,'ut',2)===0) 50 50 $test->addTestFile($path.'/'.$entry); 51 else if($entry!=='.' && $entry!=='..' && is_dir($path.'/'.$entry) && $recursive)51 else if($entry!=='.' && $entry!=='..' && $entry!=='.svn' && is_dir($path.'/'.$entry) && $recursive) 52 52 addTests($test,$path.'/'.$entry,$recursive); 53 53 }
