mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-26 20:48:38 +00:00
d55978cf93
The setup for unit testing in Github in the "Install dependencies" log reports 11 members as "does not comply with with psr-4 autoloading standard." In each case, it is because the test namespace does not match the directory; in most cases, it was caused by the member being moved from one directory to another without changing the namespace declaration. No harm results from these problems, but there's also no reason to not correct them.
16 lines
306 B
PHP
16 lines
306 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Chart;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Chart\Chart;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class RenderTest extends TestCase
|
|
{
|
|
public function testNoRenderer(): void
|
|
{
|
|
$chart = new Chart('Chart1');
|
|
self::assertFalse($chart->render());
|
|
}
|
|
}
|