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

ExampleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 9
rs 10
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A true_is_true() 0 4 1
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
}