Changeset 2267
- Timestamp:
- 03/10/08 09:07:34 (6 months ago)
- Location:
- trunk/modules/unit_test
- Files:
-
- 4 modified
-
controllers/unit_test.php (modified) (1 diff, 3 props)
-
i18n/en_US/unit_test.php (modified) (2 props)
-
tests/Example_Test.php (modified) (2 diffs, 3 props)
-
views/kohana_unit_test.php (modified) (2 props)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/unit_test/controllers/unit_test.php
- Property svn:eol-style set to LF
- Property copyright set to Copyright (c) 2007 Kohana Team
- Property svn:keywords set to Id
r2266 r2267 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Unit_test controller 3 * Unit_Test controller. 4 * 5 * $Id$ 4 6 * 5 7 * @package Unit_Test -
trunk/modules/unit_test/i18n/en_US/unit_test.php
- Property svn:eol-style set to LF
- Property copyright set to Copyright (c) 2007 Kohana Team
-
trunk/modules/unit_test/tests/Example_Test.php
- Property svn:eol-style set to LF
- Property copyright set to Copyright (c) 2007 Kohana Team
- Property svn:keywords set to Id
r2266 r2267 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Example Test. 4 * 5 * $Id$ 6 * 7 * @package Unit_Test 8 * @author Kohana Team 9 * @copyright (c) 2007-2008 Kohana Team 10 * @license http://kohanaphp.com/license.html 11 */ 3 12 class Example_Test extends Unit_Test_Case { 4 13 … … 51 60 { 52 61 // By supplying $var in the debug parameter, 53 // we can on which number this test fails.62 // we can see on which number this test fails. 54 63 $this->assert_true($var < 100, $var); 55 64 } -
trunk/modules/unit_test/views/kohana_unit_test.php
- Property svn:eol-style set to LF
- Property copyright set to Copyright (c) 2007 Kohana Team
