Completed
Branch output_parsers_refactor (d2cb12)
by Alessandro
02:20
created

ThreeGreenTestStub   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 3
c 1
b 1
f 0
lcom 1
cbo 1
dl 0
loc 17
rs 10
1
<?php
2
3
namespace Paraunit\Tests\Stub;
4
5
/**
6
 * Class ThreeGreenTestStub
7
 * @package Paraunit\Tests\Stub
8
 */
9
class ThreeGreenTestStub extends \PHPUnit_Framework_TestCase
10
{
11
    public function testGreenOne()
12
    {
13
        $this->assertTrue(true);
14
    }
15
16
    public function testGreenTwo()
17
    {
18
        $this->assertTrue(true);
19
    }
20
21
    public function testGreenThree()
22
    {
23
        $this->assertTrue(true);
24
    }
25
}
26