Completed
Push — master ( aba811...c04690 )
by Vincent
05:12
created

CalculatorTest   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 testTrueIsTrue() 0 5 1
1
<?php
2
3
namespace VMosoti\BongaTech\Tests;
4
5
use PHPUnit\Framework\TestCase;
6
class CalculatorTest extends TestCase
7
{
8
    public function testTrueIsTrue()
9
    {
10
        $foo = true;
11
        $this->assertTrue($foo);
12
    }
13
14
}