Completed
Pull Request — master (#1)
by Harry
03:02
created

TestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2
Metric Value
wmc 1
lcom 1
cbo 2
dl 0
loc 13
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 5 1
1
<?php
2
3
namespace Graze\DogStatsD\Test;
4
5
use Graze\DogStatsD\Client;
6
use PHPUnit_Framework_TestCase;
7
8
class TestCase extends PHPUnit_Framework_TestCase
9
{
10
    /**
11
     * @var Client
12
     */
13
    protected $client;
14
15
    public function setUp()
16
    {
17
        $this->client = new Client();
18
        $this->client->configure();
19
    }
20
}
21