mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-22 08:09:15 +00:00
ec4098c8fd
While we might never be able to have 100% of our code strict, we can at the very least do it for all of our tests. This ensures that our tests are using our API with the types as intended by the test author, and not silently be cast to what our API requires.
81 lines
2.2 KiB
PHP
81 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Cell;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Cell\Cell;
|
|
use PhpOffice\PhpSpreadsheet\Exception as SpreadsheetException;
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CellDetachTest extends TestCase
|
|
{
|
|
/** @var ?Spreadsheet */
|
|
private $spreadsheet;
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
if ($this->spreadsheet !== null) {
|
|
$this->spreadsheet->disconnectWorksheets();
|
|
$this->spreadsheet = null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerMethodName
|
|
*/
|
|
public function testDetach(string $method): void
|
|
{
|
|
$this->expectException(SpreadsheetException::class);
|
|
$this->expectExceptionMessage('is not bound to a worksheet');
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$sheet = $this->spreadsheet->getActiveSheet();
|
|
$sheet->getCell('A1')->detach();
|
|
if (method_exists(Cell::class, $method)) {
|
|
$sheet->getCell('A1')->$method();
|
|
} else {
|
|
self::fail("Cell method $method does not exist");
|
|
}
|
|
}
|
|
|
|
public static function providerMethodName(): array
|
|
{
|
|
return [
|
|
['updateInCollection'],
|
|
['getColumn'],
|
|
['getRow'],
|
|
['hasDataValidation'],
|
|
['getDataValidation'],
|
|
['hasHyperlink'],
|
|
['getHyperlink'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerMethodNameSet
|
|
*/
|
|
public function testDetachSet(string $method): void
|
|
{
|
|
$this->expectException(SpreadsheetException::class);
|
|
$this->expectExceptionMessage('is not bound to a worksheet');
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$sheet = $this->spreadsheet->getActiveSheet();
|
|
$sheet->getCell('A1')->detach();
|
|
if (method_exists(Cell::class, $method)) {
|
|
$sheet->getCell('A1')->$method(null);
|
|
} else {
|
|
self::fail("Cell method $method does not exist");
|
|
}
|
|
}
|
|
|
|
public static function providerMethodNameSet(): array
|
|
{
|
|
return [
|
|
['setDataValidation'],
|
|
['setHyperlink'],
|
|
['setValue'],
|
|
];
|
|
}
|
|
}
|