Skip to content

Commit 1b5879b

Browse files
committed
IHF: Test names minor fixes.
1 parent 0b13afd commit 1b5879b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/str/StrUpperTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
class StrUpperTest extends TestCase
44
{
55
/** @test */
6-
public function it_works_with_an_empty_string()
6+
public function it_uppers_empty_string()
77
{
88
$this->assertEquals('', str_upper(''));
99
}
1010

1111
/** @test */
12-
public function it_works_with_uppercased_string()
12+
public function it_uppers_uppercased_string()
1313
{
1414
$this->assertEquals('TEST', str_upper('TEST'));
1515
}
1616

1717
/** @test */
18-
public function it_works_with_uppercased_sentence()
18+
public function it_uppers_uppercased_sentence()
1919
{
2020
$this->assertEquals('ANOTHER TEST', str_upper('ANOTHER TEST'));
2121
}

0 commit comments

Comments
 (0)