コード例 #1
0
ファイル: StdOutputTest.php プロジェクト: jacmoe/php-workshop
 public function testWrite()
 {
     $message = "There are people who actually like programming. ";
     $message .= "I don't understand why they like programming.";
     $this->expectOutputString($message);
     $this->output->write($message);
 }