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

TestCase::testBulk()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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