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

ValueObjectHelper::testToString()   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
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