Completed
Push — master ( ab60cf...570bd3 )
by Vitaly
03:22
created

TestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 8
rs 10
1
<?php
2
3
declare(strict_types=1);
4
/**
5
 * Created by Vitaly Iegorov <[email protected]>.
6
 * on 22.12.16 at 18:16.
7
 */
8
9
namespace samsonframework\behatextension\tests;
10
11
/**
12
 * Class TestCase.
13
 *
14
 * @author Vitaly Egorov <[email protected]>
15
 */
16
class TestCase extends \PHPUnit\Framework\TestCase
17
{
18
    public function testBulk()
19
    {
20
        // TODO: Write tests
21
        $this->assertTrue(true);
22
    }
23
}
24