spec\LdapTools\Schema\Parser\SchemaYamlParserSpec::it_should_be_able_to_parse_all_types_in_a_schema_and_return_an_array_of_LdapObjectSchema PHP Метод

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

    function it_should_be_able_to_parse_all_types_in_a_schema_and_return_an_array_of_LdapObjectSchema()
    {
        $this->beConstructedWith(__DIR__ . '/../../../resources/schema');
        $this->parseAll('example')->shouldBeArray();
        $this->parseAll('example')->shouldHaveCount(14);
        $this->parseAll('example')->shouldReturnAnArrayOfLdapObjectSchemas();
    }
SchemaYamlParserSpec