Nelmio\Alice\Definition\Value\ParameterValueTest::testCanBeCastedIntoAString PHP Метод

testCanBeCastedIntoAString() публичный Метод

    public function testCanBeCastedIntoAString()
    {
        $value = new ParameterValue('foo');
        $this->assertEquals('<{foo}>', $value);
        $value = new ParameterValue(new DummyValue('foo'));
        $this->assertEquals('<{foo}>', $value);
    }