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

DatabaseExtractorTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 10
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testExtract() 0 5 1
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