Passed
Push — master ( bf1af5...e52ce1 )
by Ryan
14:07
created

SimplePieTest   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
<?php
2
/**
3
 * Copyright (c) 2017 Ryan Parman <http://ryanparman.com>.
4
 * Copyright (c) 2017 Contributors.
5
 *
6
 * http://opensource.org/licenses/Apache2.0
7
 */
8
9
declare(strict_types=1);
10
11
namespace SimplePie\Test\Unit;
12
13
use SimplePie\SimplePie;
14
15
/**
16
 * @coversNothing
17
 */
18
class SimplePieTest extends AbstractTestCase
19
{
20
    public function testFailMe(): void
21
    {
22
        new SimplePie();
23
    }
24
}
25