Exemplo n.º 1
0
 /**
  * Does the Object output correctly to the console
  */
 public function testConsoleOutput()
 {
     $obj = new Console();
     $this->expectOutputString("hello, this is a test log\n");
     $obj->write("hello, this is a test log");
 }