Passed
Push — master ( b24d67...98f0e0 )
by mon
02:06
created

VersionTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testGet() 0 4 1
1
<?php
2
3
namespace FileEye\MimeMap\test;
4
5
use FileEye\MimeMap\Version;
6
use PHPUnit\Framework\TestCase;
7
8
class VersionTest extends TestCase
9
{
10
    public function testGet()
11
    {
12
        $this->assertNotNull(Version::get());
13
    }
14
}
15