@Test
public void testMatchingSchemaFoundInDirectory() throws IOException {
FilesystemPortfolioSchemaLocator locator = new FilesystemPortfolioSchemaLocator(
createSchemaLocationWithVersions("1.0", "1.1", "2.0"));
assertNotNull(locator.lookupSchema(new SchemaVersion("1.0")));
assertNotNull(locator.lookupSchema(new SchemaVersion("1.1")));
assertNotNull(locator.lookupSchema(new SchemaVersion("2.0")));
}