You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
713 B
25 lines
713 B
2 months ago
|
<?php
|
||
|
|
||
|
namespace PhpOffice\PhpSpreadsheetTests\Shared;
|
||
|
|
||
|
use PhpOffice\PhpSpreadsheet\Exception as SpreadsheetException;
|
||
|
use PhpOffice\PhpSpreadsheet\Shared\Escher\DgContainer;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class DgContainerTest extends TestCase
|
||
|
{
|
||
|
public function testNullContainerWithThrow(): void
|
||
|
{
|
||
|
$this->expectException(SpreadsheetException::class);
|
||
|
$this->expectExceptionMessage('spgrContainer is unexpectedly null');
|
||
|
$container = new DgContainer();
|
||
|
$container->getSpgrContainerOrThrow();
|
||
|
}
|
||
|
|
||
|
public function testNullContainerWithoutThrow(): void
|
||
|
{
|
||
|
$container = new DgContainer();
|
||
|
self::assertNull($container->getSpgrContainer());
|
||
|
}
|
||
|
}
|