StringsUtilsTest.php 324 B

12345678910111213141516
  1. <?php
  2. namespace App\Tests\Service\Utils;
  3. use App\Service\Utils\StringsUtils;
  4. use PHPUnit\Framework\TestCase;
  5. class StringsUtilsTest extends TestCase
  6. {
  7. /**
  8. * @see StringsUtils::unquote()
  9. */
  10. public function testUnquote():void
  11. {
  12. $this->assertEquals("foo", StringsUtils::unquote("'foo"));
  13. }
  14. }