CalculatorTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
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 8
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
7
class CalculatorTest extends TestCase
8
{
9
    public function testTrueIsTrue()
10
    {
11
        $foo = true;
12
        $this->assertTrue($foo);
13
    }
14
}
15