assertEquals( new File(f), new File(s.get(0)) );
}
@Test
public void testMatchFileNames2() {
SchemagenMojo sm = new SchemagenMojo();
String f = "src/test/resources/test1/*.ttl";
sm.addIncludes( f );
List<String> s = sm.matchFileNames();
assertNotNull(s);
assertEquals( 2, s.size() );
assertTrue( s.get(0).endsWith( "test1.ttl" ));
assertTrue( s.get(1).endsWith( "test2.ttl" ));
}