Passed
Pull Request — master (#16)
by Jakub
03:38
created

TestDoubles::createTestDoubleWithPhpunit()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 8
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 11
ccs 9
cts 9
cp 1
crap 1
rs 10
1
<?php
2
declare(strict_types=1);
3
4
namespace Zalas\PHPUnit\Doubles\TestCase;
5
6
/**
7
 * @deprecated use one of the replacement traits: ProphecyTestDoubles, PHPUnitTestDoubles.
8
 */
9
trait TestDoubles
10
{
11
    use ProphecyTestDoubles;
12
    use PHPUnitTestDoubles;
13
}
14