final URL testUrl = this.getClass().getResource( "/ProjectBackendTestProjectStructureInvalidNoPOM/src/main/java/org/kie/test/Bean.java" );
final org.uberfire.java.nio.file.Path nioTestPath = fs.getPath( testUrl.toURI() );
final Path testPath = paths.convert( nioTestPath );
//Test a non-Project Path resolves to null
final Package result = projectService.resolvePackage( testPath );
assertNull( result );
}
@Test
public void testResolvePackageWithResourcesFileInDefaultPackage() throws Exception {