Failed Conditions
Push — master ( 01c22b...e42c1f )
by Marco
79:13 queued 10s
created

MySQL::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Tests\DBAL\Functional\Platform\ColumnTest;
6
7
use Doctrine\DBAL\Platforms\MySqlPlatform;
8
use Doctrine\Tests\DBAL\Functional\Platform\ColumnTest;
9
10
final class MySQL extends ColumnTest
11
{
12
    protected function setUp() : void
13
    {
14
        parent::setUp();
15
16
        $this->requirePlatform(MySqlPlatform::class);
17
    }
18
19
    public function testVariableLengthStringNoLength() : void
20
    {
21
        self::markTestSkipped();
22
    }
23
24
    public function testVariableLengthBinaryNoLength() : void
25
    {
26
        self::markTestSkipped();
27
    }
28
}
29