Exemple #1
0
 public function testGet()
 {
     $filename = __DIR__ . DIRECTORY_SEPARATOR . 'excel5.xls';
     $container = new MW_Container_PHPExcel($filename, 'Excel5', array());
     $this->assertInstanceOf('MW_Container_Content_Interface', $container->get('Sheet2'));
     $this->setExpectedException('MW_Container_Exception');
     $container->get('abc');
 }