DemoTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 5
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testSomethingIsTrue() 0 3 1
1
<?php
2
use PHPUnit_Framework_TestCase;
3
4
class DemoTest extends PHPUnit_Framework_TestCase
5
{
6
    public function testSomethingIsTrue()
7
    {
8
        $this->assertTrue(true);
9
    }
10
}