Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Cell/CellDetachTest.php
T
Adrien Crivelli ec4098c8fd Strict mode for all tests
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.
2023-09-07 17:44:56 +08:00

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'],
];
}
}