コード例 #1
0
ファイル: StringTest.php プロジェクト: dmeroff/string
 public function testReplace()
 {
     $string = new String('Hello, world');
     $string->replace('Hello', 'Goodbye');
     $this->assertAttributeEquals('Goodbye, world', 'string', $string);
 }