File: TokenizerTest.php

package info (click to toggle)
php-sql-formatter 1.2.17%2Bdct1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 692 kB
  • sloc: php: 1,819; sql: 301; xml: 18; makefile: 17
file content (19 lines) | stat: -rw-r--r-- 348 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

namespace Doctrine\SqlFormatter\Tests;

use Doctrine\SqlFormatter\Tokenizer;
use PHPUnit\Framework\TestCase;

final class TokenizerTest extends TestCase
{
    /**
     * @doesNotPerformAssertions
     */
    public function testThereAreNoRegressions(): void
    {
        (new Tokenizer())->tokenize('*/');
    }
}