first commit

This commit is contained in:
2025-11-20 14:44:35 +08:00
commit 91f70ed69c
839 changed files with 207385 additions and 0 deletions
@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace Tests\PhpOffice\Math\Element;
use PhpOffice\Math\Element\Identifier;
use PHPUnit\Framework\TestCase;
class IdentifierTest extends TestCase
{
public function testConstruct(): void
{
$operator = new Identifier('x');
$this->assertEquals('x', $operator->getValue());
}
}