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

TestCase::testBulk()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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