Goetas\Xsd\XsdToPhp\Tests\JmsSerializer\OTA\AnyTypePHPConversionTest::testSimpleAnyTypePHP PHP Method

testSimpleAnyTypePHP() public method

    public function testSimpleAnyTypePHP()
    {
        $xml = '
            <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
                <xs:complexType name="single">
                    <xs:all>
                        <xs:element name="id" type="xs:anyType"/>
                    </xs:all>
                </xs:complexType>
            </xs:schema>';
        $items = $this->getPhpClasses($xml, array(['http://www.w3.org/2001/XMLSchema', 'anyType', 'mixed']));
        $this->assertCount(1, $items);
        $single = $items['Example\\SingleType'];
        $this->assertTrue($single->hasMethod('getId'));
        $this->assertTrue($single->hasMethod('setId'));
        $returnTags = $single->getMethod('getId')->getDocBlock()->getTags();
        $this->assertCount(1, $returnTags);
        $this->assertEquals(['mixed'], $returnTags[0]->getTypes());
    }