Nelmio\Alice\Definition\Value\FixtureReferenceValue::getValue PHP Method

getValue() public method

public getValue ( ) : string | Nelmio\Alice\Definition\ValueInterface
return string | Nelmio\Alice\Definition\ValueInterface
    public function getValue()
    {
        return $this->reference;
    }

Usage Example

 public function testReadAccessorsReturnPropertiesValues()
 {
     $value = new FixtureReferenceValue('user0');
     $this->assertEquals('user0', $value->getValue());
 }