示例#1
0
文件: MemoryTest.php 项目: seytar/psx
 public function testWriteln()
 {
     $output = new Memory();
     $output->writeln('foobar');
     $this->assertEquals(array('foobar' . PHP_EOL), $output->getMessages());
 }