Exemplo n.º 1
0
 /**
  * @expectedException LogicException
  * @expectedExceptionMessage The stream filter API can not be used
  */
 public function testFailedprependStreamFilter()
 {
     $csv = new Reader(new SplTempFileObject());
     $this->assertFalse($csv->isActiveStreamFilter());
     $csv->prependStreamFilter('string.toupper');
 }