final URL testUrl = this.getClass().getResource( "/ProjectBackendTestProject1/src/test/resources/org/kie/test/project/backend/test.scenario" );
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( rootPath.toURI(),
result.getPackageTestResourcesPath().toURI() );
}
}