final URL testUrl = this.getClass().getResource( "/ProjectBackendTestProjectStructureValid/src/main/resources/org/kie/test/rule1.drl" );
final org.uberfire.java.nio.file.Path nioTestPath = fs.getPath( testUrl.toURI() );
final Path testPath = paths.convert( nioTestPath );
//Test a Resources file resolves to the containing package
final Package result = projectService.resolvePackage( testPath );
assertEquals( "org.kie.test",
result.getPackageName() );
}
}