Completed
Push — develop ( 0c4aa7...b62acb )
by Sergei
55s queued 14s
created

Oracle   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 4
eloc 6
dl 0
loc 22
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A testVariableLengthBinaryNoLength() 0 3 1
A setUp() 0 5 1
A testVariableLengthStringNoLength() 0 3 1
A testFixedLengthBinaryNoLength() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Tests\DBAL\Functional\Platform\ColumnTest;
6
7
use Doctrine\DBAL\Platforms\OraclePlatform;
8
use Doctrine\Tests\DBAL\Functional\Platform\ColumnTest;
9
10
final class Oracle extends ColumnTest
11
{
12
    protected function setUp() : void
13
    {
14
        parent::setUp();
15
16
        $this->requirePlatform(OraclePlatform::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
    public function testFixedLengthBinaryNoLength() : void
30
    {
31
        self::markTestSkipped();
32
    }
33
}
34