SpecTest.php 687 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * This file is part of the league/commonmark package.
  5. *
  6. * (c) Colin O'Dell <colinodell@gmail.com>
  7. *
  8. * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
  9. * - (c) John MacFarlane
  10. *
  11. * For the full copyright and license information, please view the LICENSE
  12. * file that was distributed with this source code.
  13. */
  14. namespace League\CommonMark\Tests\Functional;
  15. /**
  16. * Tests the parser against the CommonMark spec
  17. */
  18. final class SpecTest extends AbstractSpecTest
  19. {
  20. protected function getFileName(): string
  21. {
  22. return __DIR__ . '/../../vendor/commonmark/commonmark.js/test/spec.txt';
  23. }
  24. }