spec\LdapTools\Schema\Parser\SchemaYamlParserSpec::it_should_error_when_calling_getSchemaModificationTime_for_a_non_existing_schema PHP Method

it_should_error_when_calling_getSchemaModificationTime_for_a_non_existing_schema() public method

    function it_should_error_when_calling_getSchemaModificationTime_for_a_non_existing_schema()
    {
        $this->beConstructedWith(__DIR__ . '/../../../resources/schema');
        $this->shouldThrow('\\Exception')->duringGetSchemaModificationTime('foo');
    }
SchemaYamlParserSpec