mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Move failing assertion to a new test method
This commit is contained in:
parent
d9655c94c5
commit
22b0386fd5
1 changed files with 13 additions and 6 deletions
|
@ -7632,11 +7632,6 @@ class MultibyteTest extends CakeTestCase {
|
|||
$result = mb_strtoupper($string);
|
||||
$expected = 'ΩKÅ';
|
||||
$this->assertEquals($expected, $result);
|
||||
|
||||
$string = 'fffiflffifflſtstﬓﬔﬕﬖﬗ';
|
||||
$result = mb_strtoupper($string);
|
||||
$expected = 'fffiflffifflſtstﬓﬔﬕﬖﬗ';
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -7652,7 +7647,7 @@ class MultibyteTest extends CakeTestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* testUsingMbStrtoupperArmenian method
|
||||
* testUsingMbStrtoupperDiacritic method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
@ -7663,6 +7658,18 @@ class MultibyteTest extends CakeTestCase {
|
|||
$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
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue