PhpSpreadsheet/tests/PhpSpreadsheetTests/Worksheet/CellCollectionTest.php

25 lines
811 B
PHP

<?php
namespace PhpSpreadsheetTests\Worksheet;
use PhpSpreadsheet\CachedObjectStorageFactory;
use PhpSpreadsheet\Spreadsheet;
class CellCollectionTest extends \PHPUnit_Framework_TestCase
{
public function testCacheLastCell()
{
$methods = CachedObjectStorageFactory::getCacheStorageMethods();
foreach ($methods as $method) {
CachedObjectStorageFactory::initialize($method);
$workbook = new Spreadsheet();
$cells = ['A1', 'A2'];
$worksheet = $workbook->getActiveSheet();
$worksheet->setCellValue('A1', 1);
$worksheet->setCellValue('A2', 2);
$this->assertEquals($cells, $worksheet->getCellCollection(), "Cache method \"$method\".");
CachedObjectStorageFactory::finalize();
}
}
}