コード例 #1
0
ファイル: BufferTest.class.php プロジェクト: xp-lang/compiler
 public function replace()
 {
     $b = new Buffer('Teste');
     $b->replace('e', 'a');
     $this->assertSource('Tasta', $b);
 }