1 | <?php |
||
37 | class LanguageTest extends UnitTestCase |
||
|
|||
38 | { |
||
39 | use AccessibleTraitForTest; |
||
40 | |||
41 | /** |
||
42 | * subject |
||
43 | * |
||
44 | * @var Traits\Language $subject |
||
45 | */ |
||
46 | protected $subject; |
||
47 | |||
48 | /** |
||
49 | * setUp |
||
50 | * |
||
51 | * @return void |
||
52 | */ |
||
53 | public function setUp() |
||
62 | |||
63 | /** |
||
64 | * translateReturnsTranslatedString |
||
65 | * |
||
66 | * @test |
||
67 | */ |
||
68 | public function translateReturnsTranslatedString() |
||
77 | |||
78 | /** |
||
79 | * translateWithWrongArgumentShouldReturnEmptyString |
||
80 | * |
||
81 | * @test |
||
82 | */ |
||
83 | public function translateWithWrongLLLKeyReturnsEmptyString() |
||
92 | |||
93 | /** |
||
94 | * translateWithRandomStringReturnsRandomString |
||
95 | * |
||
96 | * @test |
||
97 | */ |
||
98 | public function translateWithRandomStringReturnsRandomString() |
||
103 | } |
||
104 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.