[Cs-content-commits] SF.net SVN: cs-content:[437] trunk/1.0/tests
PHP Templating & Includes System
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-08-14 16:37:00
|
Revision: 437 http://cs-content.svn.sourceforge.net/cs-content/?rev=437&view=rev Author: crazedsanity Date: 2009-08-14 16:36:52 +0000 (Fri, 14 Aug 2009) Log Message: ----------- Minor comment & superficial changes, test file (no tests yet) for cs_fileSystem{} Modified Paths: -------------- trunk/1.0/tests/testOfCSGlobalFunctions.php trunk/1.0/tests/testOfCSPHPDB.php Added Paths: ----------- trunk/1.0/tests/testOfCSFileSystem.php Copied: trunk/1.0/tests/testOfCSFileSystem.php (from rev 436, trunk/1.0/tests/testOfCSGlobalFunctions.php) =================================================================== --- trunk/1.0/tests/testOfCSFileSystem.php (rev 0) +++ trunk/1.0/tests/testOfCSFileSystem.php 2009-08-14 16:36:52 UTC (rev 437) @@ -0,0 +1,42 @@ +<?php +/* + * Created on Jan 13, 2009 + * + * + * FILE INFORMATION: + * + * $HeadURL$ + * $Id$ + * $LastChangedDate$ + * $LastChangedBy$ + * $LastChangedRevision$ + */ + + + +//============================================================================= +class TestOfCSFileSystem extends UnitTestCase { + + //------------------------------------------------------------------------- + function __construct() { + require_once(dirname(__FILE__) .'/../cs_globalFunctions.class.php'); + require_once(dirname(__FILE__) .'/../cs_fileSystem.class.php'); + + $this->gfObj = new cs_globalFunctions; + $this->gfObj->debugPrintOpt=1; + + $filesDir = dirname(__FILE__) ."/files"; + define('TEST_FILESDIR', $filesDir); + }//end __construct() + //------------------------------------------------------------------------- + + + + //------------------------------------------------------------------------- + //------------------------------------------------------------------------- + + + +}//end TestOfCSFileSystem +//============================================================================= +?> Modified: trunk/1.0/tests/testOfCSGlobalFunctions.php =================================================================== --- trunk/1.0/tests/testOfCSGlobalFunctions.php 2009-08-14 16:04:18 UTC (rev 436) +++ trunk/1.0/tests/testOfCSGlobalFunctions.php 2009-08-14 16:36:52 UTC (rev 437) @@ -402,6 +402,6 @@ -}//end TestOfCSContent +}//end TestOfCSGlobalFunctions //============================================================================= ?> Modified: trunk/1.0/tests/testOfCSPHPDB.php =================================================================== --- trunk/1.0/tests/testOfCSPHPDB.php 2009-08-14 16:04:18 UTC (rev 436) +++ trunk/1.0/tests/testOfCSPHPDB.php 2009-08-14 16:36:52 UTC (rev 437) @@ -154,9 +154,5 @@ //------------------------------------------------------------------------- - - - - } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |