Passed
Push — master ( 9bcdfc...42324d )
by Steve
45s
created

RangeComparatorLCSTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testDifferencesIterator() 0 2 1
1
<?php
2
3
/**
4
 * (c) Steve Nebes <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
declare(strict_types=1);
11
12
namespace SN\RangeDifferencer;
13
14
use PHPUnit\Framework\TestCase;
15
16
class RangeComparatorLCSTest extends TestCase
17
{
18
    public function testDifferencesIterator()
19
    {
20
        
21
    }
22
}
23