Updated description

This commit is contained in:
Francesco Mangiacrapa 2022-12-05 15:02:12 +01:00
parent 5d2f69f50a
commit ed0a050723
2 changed files with 13 additions and 3 deletions

View File

@ -1,6 +1,7 @@
# GeoPortal Data Mapper
GeoPortal Data Mapper is a common library used by GUI Data-Entry/Data-Viewer components developed for the D4Science Geoportal service
GeoPortal Data Mapper is a common library used by Geoportal Data-Entry/Data-Viewer components developed for the D4Science Geoportal service.
It provides common utility behaviors/classes (es. ProjectEdit and ProjectView DTO, GcubeProfilesPerUCD Cache and so on) to Geoportal Data-Entry/Data-Viewer components
## Built With

View File

@ -24,7 +24,7 @@ import org.junit.Test;
*
* @author Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it
*
* Sep 9, 2022
* Dec 5, 2022
*/
public class Geoportal_DataMapper_Tests {
@ -44,6 +44,9 @@ public class Geoportal_DataMapper_Tests {
private static String USERNAME = "francesco.mangiacrapa";
/**
* Read context settings.
*/
public static void readContextSettings() {
try (InputStream input = new FileInputStream(gcube_config_path)) {
@ -79,6 +82,9 @@ public class Geoportal_DataMapper_Tests {
clientProjects = GeoportalClientCaller.projects();
}
/**
* Test read project edit.
*/
@Test
public void testReadProjectEdit() {
@ -101,7 +107,10 @@ public class Geoportal_DataMapper_Tests {
}
}
//@Test
/**
* Test read project view.
*/
// @Test
public void testReadProjectView() {
try {