Completed
Branch master (95b3ba)
by Ryan
28:02 queued 13:03
created

LibxmlTraitTest::testFailMe()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 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\Mixin;
12
13
use SimplePie\Mixin\LibxmlTrait;
14
use SimplePie\Test\Unit\AbstractTestCase;
15
16
class LibxmlTraitTest extends AbstractTestCase
17
{
18
    use LibxmlTrait;
19
20
    public function testFailMe(): void
21
    {
22
    }
23
}
24