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

AgentTest::tearDown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 0
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
}