/var/www/hkosl.com/imusiccircle/webadmin/libraies/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Worksheet/WorksheetRowTest.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php

class WorksheetRowTest extends PHPUnit_Framework_TestCase
{
    public 
$mockWorksheet;
    public 
$mockRow;

    public function 
setUp()
    {
        if (!
defined('PHPEXCEL_ROOT')) {
            
define('PHPEXCEL_ROOT'APPLICATION_PATH '/');
        }
        require_once(
PHPEXCEL_ROOT 'PHPExcel/Autoloader.php');
        
        
$this->mockWorksheet $this->getMockBuilder('PHPExcel_Worksheet')
            ->
disableOriginalConstructor()
            ->
getMock();
        
$this->mockWorksheet->expects($this->any())
                 ->
method('getHighestColumn')
                 ->
will($this->returnValue('E'));
    }


    public function 
testInstantiateRowDefault()
    {
        
$row = new PHPExcel_Worksheet_Row($this->mockWorksheet);
        
$this->assertInstanceOf('PHPExcel_Worksheet_Row'$row);
        
$rowIndex $row->getRowIndex();
        
$this->assertEquals(1$rowIndex);
    }

    public function 
testInstantiateRowSpecified()
    {
        
$row = new PHPExcel_Worksheet_Row($this->mockWorksheet5);
        
$this->assertInstanceOf('PHPExcel_Worksheet_Row'$row);
        
$rowIndex $row->getRowIndex();
        
$this->assertEquals(5$rowIndex);
    }

    public function 
testGetCellIterator()
    {
        
$row = new PHPExcel_Worksheet_Row($this->mockWorksheet);
        
$cellIterator $row->getCellIterator();
        
$this->assertInstanceOf('PHPExcel_Worksheet_RowCellIterator'$cellIterator);
    }
}