1
This commit is contained in:
18
vendor/phpoffice/math/tests/Math/Element/OperatorTest.php
vendored
Normal file
18
vendor/phpoffice/math/tests/Math/Element/OperatorTest.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\PhpOffice\Math\Element;
|
||||
|
||||
use PhpOffice\Math\Element\Operator;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class OperatorTest extends TestCase
|
||||
{
|
||||
public function testConstruct(): void
|
||||
{
|
||||
$operator = new Operator('+');
|
||||
|
||||
$this->assertEquals('+', $operator->getValue());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user