1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional\Platform\ColumnTest;
use Doctrine\DBAL\Platforms\SQLServerPlatform;
use Doctrine\DBAL\Tests\Functional\Platform\AbstractColumnTestCase;
final class SQLServer extends AbstractColumnTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->requirePlatform(SQLServerPlatform::class);
}
public function testVariableLengthStringNoLength(): void
{
self::markTestSkipped();
}
public function testVariableLengthBinaryNoLength(): void
{
self::markTestSkipped();
}
}
|