HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/vendor/maatwebsite/excel/tests/Excel/ExcelTester.php
<?php

use Mockery as m;

class ExcelTester extends ExcelTestCase {

    /**
     * Test select sheets
     * @return
     */
    public function testSelectSheets()
    {
        $selected = $this->excel->selectSheets(array('sheet'));
        $this->assertEquals($this->excel, $selected);
    }

    /**
     * Test select sheets
     * @return
     */
    public function testSelectSheetsByIndex()
    {
        $selected = $this->excel->selectSheetsByIndex(array('0'));
        $this->assertEquals($this->excel, $selected);
    }

    /**
     * Test the share view
     * @return
     */
    public function testShareView()
    {
        $selected = $this->excel->shareView('filename', array('test'), array('test'));
        $this->assertEquals($this->writer, $selected);
    }

    /**
     * Test load view
     * @return
     */
    public function testLoadView()
    {
        $selected = $this->excel->loadView('filename', array('test'), array('test'));
        $this->assertEquals($this->writer, $selected);
    }
}