Passed
Push — master ( 26d51b...68d107 )
by Jakub
02:05 queued 11s
created

TestDoubles::createTestDoubleWithProphecy()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 13
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 7
c 1
b 0
f 0
nc 3
nop 1
dl 0
loc 13
ccs 7
cts 7
cp 1
crap 3
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