Completed
Push — master ( e57500...6b1ea1 )
by Michael
05:04
created

ServerTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace ParityBit\DeploymentNotifier;
4
5
class ServerTest extends ValueObjectHelper
6
{
7
    protected $objectUnderTest;
8
    protected $value;
9
10
    public function setUp()
11
    {
12
        $this->generateRandomValue();
13
        $this->objectUnderTest = new Server($this->value);
14
    }
15
}
16