mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-27 06:28:32 +00:00
e41c4280f6
Start removing some of the deprecations, starting with the old Excel Function implementations.
22 lines
504 B
PHP
22 lines
504 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Logical;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Logical\Boolean;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class FalseTest extends TestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
|
}
|
|
|
|
public function testFALSE(): void
|
|
{
|
|
$result = Boolean::false();
|
|
self::assertFalse($result);
|
|
}
|
|
}
|