Completed
Push — master ( 868971...61fa55 )
by Vincent
05:11
created

ExampleTest::true_is_true()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
/**
3
 * BongaTech SMS Client Library for PHP.
4
 *
5
 * @copyright Copyright (c) 2017
6
 * @author   Vincent Mosoti <[email protected]>
7
 * @license https://github.com/VMosoti/bongatech-sms/blob/master/LICENSE
8
 */
9
10
namespace VMosoti\BongaTech\Tests;
11
12
use PHPUnit\Framework\TestCase;
13
14
class ExampleTest extends TestCase
15
{
16
    /** @test */
17
    public function true_is_true()
18
    {
19
        $this->assertTrue(true);
20
    }
21
22
}