We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85434ec commit 0b13afdCopy full SHA for 0b13afd
tests/str/StrLowerTest.php
@@ -3,19 +3,19 @@
3
class StrLowerTest extends TestCase
4
{
5
/** @test */
6
- public function it_works_with_an_empty_string()
+ public function it_lowers_empty_string()
7
8
$this->assertEquals('', str_lower(''));
9
}
10
11
12
- public function it_works_with_lowercased_string()
+ public function it_lowers_lowercased_string()
13
14
$this->assertEquals('test', str_lower('test'));
15
16
17
18
- public function it_works_with_lowercased_sentence()
+ public function it_lowers_lowercased_sentence()
19
20
$this->assertEquals('another test', str_lower('another test'));
21
0 commit comments