Completed
Push — master ( 07aa67...ce71ee )
by Michael
03:29
created

ValueObjectHelper   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
c 1
b 0
f 0
lcom 1
cbo 3
dl 0
loc 22
rs 10
1
<?php
2
3
namespace ParityBit\DeploymentNotifier;
4
5
abstract class ValueObjectHelper extends \PHPUnit_Framework_TestCase
6
{
7
    protected $objectUnderTest;
8
    protected $value;
9
10
    public function testGetReference()
11
    {
12
        $this->assertEquals($this->value, $this->objectUnderTest->getReference());
13
    }
14
15
    public function testToString()
16
    {
17
        $value = (string) $this->objectUnderTest;
18
        $this->assertEquals($this->value, $value);
19
    }
20
21
    protected function generateRandomValue()
22
    {
23
        $faker = \Faker\Factory::create();
24
        $this->value = $faker->word;
25
    }
26
}
27