예제 #1
0
 public function testNoChangeForMultiByte()
 {
     $s = new Stringizer("こ");
     $this->assertEquals("こ", $s->swapCase());
     $s = new Stringizer("こんにちは");
     $this->assertEquals("こんにちは", $s->swapCase());
     $s = new Stringizer("helloこんにちはWORLD");
     $this->assertEquals("HELLOこんにちはworld", $s->swapCase());
 }