Pheasant\Tests\TypeMarshallingTest::testStringAllowedValues PHP Method

testStringAllowedValues() public method

    public function testStringAllowedValues()
    {
        $object = new DomainObject(array('camelidvariant' => 'llama'));
        $object->save();
        $llamaById = DomainObject::byId(1);
        $this->assertSame($llamaById->camelidvariant, 'llama');
    }