File: AbstractSQLiteDriverTestCase.php

package info (click to toggle)
php-doctrine-dbal 4.4.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,468 kB
  • sloc: php: 65,775; xml: 618; makefile: 23
file content (16 lines) | stat: -rw-r--r-- 454 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Tests\Driver;

use Doctrine\DBAL\Platforms\SQLitePlatform;

/** @extends AbstractDriverTestCase<SQLitePlatform> */
abstract class AbstractSQLiteDriverTestCase extends AbstractDriverTestCase
{
    public function testThrowsExceptionOnCreatingDatabasePlatformsForInvalidVersion(): void
    {
        self::markTestSkipped('SQLite drivers do not use server version to instantiate platform');
    }
}