Show
Ignore:
Timestamp:
03/12/2008 01:59:24 PM (10 months ago)
Author:
Geert
Message:

Various unit_test updates. Mainly renaming stuff to be more consistent.

Files:
1 modified

Legend:

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

    r2288 r2293  
    1313        'errors'               => 'Errors', 
    1414        'line'                 => 'line', 
    15         'assert_true'          => 'Expected (boolean) TRUE, but was (%s) %s.', 
    16         'assert_true_strict'   => 'Expected strictly (boolean) TRUE, but was (%s) %s.', 
    17         'assert_false'         => 'Expected (boolean) FALSE, but was (%s) %s.', 
    18         'assert_false_strict'  => 'Expected strictly (boolean) FALSE, but was (%s) %s.', 
    19         'assert_equal'         => 'Expected (%s) %s to be equal to (%s) %s.', 
    20         'assert_not_equal'     => 'Expected (%s) %s to not be equal to (%s) %s.', 
    21         'assert_identical'     => 'Expected (%s) %s to be identical to (%s) %s.', 
    22         'assert_not_identical' => 'Expected (%s) %s to not be identical to (%s) %s.', 
    23         'assert_boolean'       => 'Expected (%s) %s to be a boolean.', 
    24         'assert_not_boolean'   => 'Expected (%s) %s to not be a boolean.', 
    25         'assert_integer'       => 'Expected (%s) %s to be an integer.', 
    26         'assert_not_integer'   => 'Expected (%s) %s to not be an integer.', 
    27         'assert_float'         => 'Expected (%s) %s to be a float.', 
    28         'assert_not_float'     => 'Expected (%s) %s to not be a float.', 
    29         'assert_array'         => 'Expected (%s) %s to be an array.', 
    30         'assert_not_array'     => 'Expected (%s) %s to not be an array.', 
    31         'assert_object'        => 'Expected (%s) %s to be an object.', 
    32         'assert_not_object'    => 'Expected (%s) %s to not be an object.', 
    33         'assert_null'          => 'Expected (%s) %s to be NULL.', 
    34         'assert_not_null'      => 'Expected (%s) %s to not be NULL.', 
    35         'assert_empty'         => 'Expected (%s) %s to be empty.', 
    36         'assert_not_empty'     => 'Expected (%s) %s to not be empty.', 
    37         'assert_pattern'       => 'Expected %s to match %s.', 
    38         'assert_not_pattern'   => 'Expected %s to not match %s.', 
     15        'assert_true'          => 'assert_true: Expected true, but was given (%s) %s.', 
     16        'assert_true_strict'   => 'assert_true_strict: Expected (boolean) true, but was given (%s) %s.', 
     17        'assert_false'         => 'assert_false: Expected false, but was given (%s) %s.', 
     18        'assert_false_strict'  => 'assert_false_strict: Expected (boolean) false, but was given (%s) %s.', 
     19        'assert_equal'         => 'assert_equal: Expected (%s) %s, but was given (%s) %s.', 
     20        'assert_not_equal'     => 'assert_not_equal: Expected not (%s) %s, but was given (%s) %s.', 
     21        'assert_same'          => 'assert_same: Expected (%s) %s, but was given (%s) %s.', 
     22        'assert_not_same'      => 'assert_not_same: Expected not (%s) %s, but was given (%s) %s.', 
     23        'assert_boolean'       => 'assert_boolean: Expected a boolean, but was given (%s) %s.', 
     24        'assert_not_boolean'   => 'assert_not_boolean: Expected not a boolean, but was given (%s) %s.', 
     25        'assert_integer'       => 'assert_integer: Expected an integer, but was given (%s) %s.', 
     26        'assert_not_integer'   => 'assert_not_integer: Expected not an integer, but was given (%s) %s.', 
     27        'assert_float'         => 'assert_float: Expected a float, but was given (%s) %s.', 
     28        'assert_not_float'     => 'assert_not_float: Expected not a float, but was given (%s) %s.', 
     29        'assert_array'         => 'assert_array: Expected an array, but was given (%s) %s.', 
     30        'assert_not_array'     => 'assert_not_array: Expected not an array, but was given (%s) %s.', 
     31        'assert_object'        => 'assert_object: Expected an object, but was given (%s) %s.', 
     32        'assert_not_object'    => 'assert_not_object: Expected not an object, but was given (%s) %s.', 
     33        'assert_null'          => 'assert_null: Expected null, but was given (%s) %s.', 
     34        'assert_not_null'      => 'assert_not_null: Expected not null, but was given (%s) %s.', 
     35        'assert_empty'         => 'assert_empty: Expected an empty value, but was given (%s) %s.', 
     36        'assert_not_empty'     => 'assert_not_empty: Expected not an empty value, but was given (%s) %s.', 
     37        'assert_pattern'       => 'assert_pattern: Expected %s to match %s.', 
     38        'assert_not_pattern'   => 'assert_not_pattern: Expected %s to not match %s.', 
    3939);