Example #1
0
 public function test_sheet_exists()
 {
     $workbook = new Workbook('Workbook title');
     $workbook->sheet('sheet title');
     $this->assertTrue($workbook->sheetExists(0));
     $this->assertFalse($workbook->sheetExists(1));
 }