Failed Conditions
Push — master ( 24dbc4...1eba78 )
by Sergei
31:31 queued 31:22
created

Db2SchemaManagerTest::testGetBooleanColumn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 15
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 9
nc 1
nop 0
dl 0
loc 15
rs 9.9666
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\DBAL\Tests\Functional\Schema;
6
7
class Db2SchemaManagerTest extends SchemaManagerFunctionalTestCase
8
{
9
    public function testListTableWithBinary() : void
10
    {
11
        self::markTestSkipped('Binary data type is currently not supported on DB2 LUW');
12
    }
13
}
14