Skip to content

Commit

Permalink
Move failing assertion to a new test method
Browse files Browse the repository at this point in the history
  • Loading branch information
bancer committed Nov 11, 2018
1 parent d9655c9 commit 22b0386
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions lib/Cake/Test/Case/I18n/MultibyteTest.php
Expand Up @@ -7632,11 +7632,6 @@ public function testUsingMbStrtoupper() {
$result = mb_strtoupper($string);
$expected = 'ΩKÅ';
$this->assertEquals($expected, $result);

$string = 'fffiflffifflſtstﬓﬔﬕﬖﬗ';
$result = mb_strtoupper($string);
$expected = 'fffiflffifflſtstﬓﬔﬕﬖﬗ';
$this->assertEquals($expected, $result);
}

/**
Expand All @@ -7652,7 +7647,7 @@ public function testUsingMbStrtoupperArmenian() {
}

/**
* testUsingMbStrtoupperArmenian method
* testUsingMbStrtoupperDiacritic method
*
* @return void
*/
Expand All @@ -7663,6 +7658,18 @@ public function testUsingMbStrtoupperDiacritic() {
$this->assertEquals($expected, $result);
}

/**
* testUsingMbStrtoupperLigatures method
*
* @return void
*/
public function testUsingMbStrtoupperLigatures() {
$string = 'fffiflffifflſtstﬓﬔﬕﬖﬗ';
$result = mb_strtoupper($string);
$expected = 'fffiflffifflſtstﬓﬔﬕﬖﬗ';
$this->assertEquals($expected, $result);
}

/**
* testMultibyteStrtoupper method
*
Expand Down

0 comments on commit 22b0386

Please sign in to comment.