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 c97d4e7 commit f6aba0aCopy full SHA for f6aba0a
tests/StrLowerTest.php
@@ -8,6 +8,12 @@ public function it_works_with_an_empty_string()
8
$this->assertEquals('', str_lower(''));
9
}
10
11
+ /** @test */
12
+ public function it_works_with_lowercased_string()
13
+ {
14
+ $this->assertEquals('test', str_lower('test'));
15
+ }
16
+
17
/** @test */
18
public function it_lowers_capitalized_word()
19
{
tests/StrUpperTest.php
$this->assertEquals('', str_upper(''));
+ public function it_works_with_uppercased_string()
+ $this->assertEquals('TEST', str_upper('TEST'));
public function it_uppers_capitalized_word()
0 commit comments