- <?php
- namespace App\Tests\Service\Utils;
- use App\Service\Utils\StringsUtils;
- use PHPUnit\Framework\TestCase;
- class StringsUtilsTest extends TestCase
- {
- /**
- * @see StringsUtils::unquote()
- */
- public function testUnquote():void
- {
- $this->assertEquals("foo", StringsUtils::unquote("'foo"));
- }
- }
|