File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ public function it_works_with_lowercased_string()
14
14
$ this ->assertEquals ('test ' , str_lower ('test ' ));
15
15
}
16
16
17
+ /** @test */
18
+ public function it_works_with_lowercased_sentence ()
19
+ {
20
+ $ this ->assertEquals ('another test ' , str_lower ('another test ' ));
21
+ }
22
+
17
23
/** @test */
18
24
public function it_lowers_capitalized_word ()
19
25
{
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ public function it_works_with_uppercased_string()
14
14
$ this ->assertEquals ('TEST ' , str_upper ('TEST ' ));
15
15
}
16
16
17
+ /** @test */
18
+ public function it_works_with_uppercased_sentence ()
19
+ {
20
+ $ this ->assertEquals ('ANOTHER TEST ' , str_upper ('ANOTHER TEST ' ));
21
+ }
22
+
17
23
/** @test */
18
24
public function it_uppers_capitalized_word ()
19
25
{
You can’t perform that action at this time.
0 commit comments