Completed
Push — master ( 3dcc20...cbdc93 )
by Benjamin
02:25
created

AgentTest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 4 1
A testSomething() 0 4 1
1
<?php
2
3
namespace CurlX\Tests;
4
5
use CurlX\Agent;
6
use PHPUnit_Framework_TestCase;
7
8
class AgentTest extends PHPUnit_Framework_TestCase
9
{
10
    public function setUp()
11
    {
12
13
    }
14
15
    public function tearDown()
16
    {
17
18
    }
19
20
    public function testSomething()
21
    {
22
        $this->assertEquals(1, 1);
23
    }
24
}