public void testLoadSchemaFromUrl() throws ResourceException, URISyntaxException {
    String schemaUrlString =
        this.getClass()
            .getResource("/schema/" + this.adjustSchemaName("BasicSchema.xsd"))
            .toString();

    MWOXProject project =
        new MWOXProject("Test Load Schema From URL", MappingsModelTestTools.buildSPIManager());
    MWXmlSchemaRepository repository = project.getSchemaRepository();
    MWXmlSchema schema = repository.createSchemaFromUrl("SchemaFromUrl", schemaUrlString);
    schema.reload();
  }