Show
Ignore:
Timestamp:
03/10/2008 11:03:30 AM (10 months ago)
Author:
Geert
Message:

Unit_Test library now throws nice Kohana_Exceptions in case of invalid test paths or other fatal conflicts.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/unit_test/i18n/en_US/unit_test.php

    r2267 r2273  
    33$lang = array 
    44( 
     5        'invalid_test_path'    => 'Failed to open test path: %s.', 
     6        'duplicate_test_class' => 'Duplicate test class named %s found in %s.', 
     7        'test_class_not_found' => 'No test class by the name of %s found in %s.', 
     8        'test_class_extends'   => '%s must extend Unit_Test_Case.', 
    59        'passed'               => 'Passed', 
    610        'failed'               => 'Failed',