Completed
Push — master ( ff26e9...7c6e93 )
by Vitaly
07:50 queued 04:40
created

TestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testBulk() 0 5 1
1
<?php declare(strict_types = 1);
2
/**
3
 * Created by Vitaly Iegorov <[email protected]>.
4
 * on 22.12.16 at 18:16
5
 */
6
namespace samsonframework\behatextension\tests;
7
8
/**
9
 * Class TestCase
10
 *
11
 * @author Vitaly Egorov <[email protected]>
12
 */
13
class TestCase extends \PHPUnit\Framework\TestCase
14
{
15
    public function testBulk()
16
    {
17
        // TODO: Write tests
18
        $this->assertTrue(true);
19
    }
20
}
21