예제 #1
0
파일: CsvTest.php 프로젝트: arvenil/csv
 /**
  * @expectedException LogicException
  * @expectedExceptionMessage The stream filter API can not be used
  */
 public function testFailedapppendStreamFilter()
 {
     $csv = new Writer(new SplTempFileObject());
     $this->assertFalse($csv->isActiveStreamFilter());
     $csv->appendStreamFilter('string.toupper');
 }