Passed
Push — master ( fc7f46...e20581 )
by Jean Paul
01:37
created

DatabaseExtractorTest::testExtract()   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
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 5
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace Coco\SourceWatcher\Tests\Core\Extractors;
4
5
use Coco\SourceWatcher\Core\Extractors\DatabaseExtractor;
6
use PHPUnit\Framework\TestCase;
7
8
/**
9
 * Class DatabaseExtractorTest
10
 * @package Coco\SourceWatcher\Tests\Core\Extractors
11
 */
12
class DatabaseExtractorTest extends TestCase
13
{
14
    /**
15
     *
16
     */
17
    public function testExtract () : void
18
    {
19
        $dbExtractor = $this->createMock( DatabaseExtractor::class );
20
21
        $this->assertNull( $dbExtractor->extract() );
22
    }
23
}
24