예제 #1
0
파일: MemoryTest.php 프로젝트: seytar/psx
 public function testWriteln()
 {
     $output = new Memory();
     $output->writeln('foobar');
     $this->assertEquals(array('foobar' . PHP_EOL), $output->getMessages());
 }