Updated description
This commit is contained in:
parent
5d2f69f50a
commit
ed0a050723
|
@ -1,6 +1,7 @@
|
||||||
# GeoPortal Data Mapper
|
# 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
|
## Built With
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ import org.junit.Test;
|
||||||
*
|
*
|
||||||
* @author Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it
|
* @author Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it
|
||||||
*
|
*
|
||||||
* Sep 9, 2022
|
* Dec 5, 2022
|
||||||
*/
|
*/
|
||||||
public class Geoportal_DataMapper_Tests {
|
public class Geoportal_DataMapper_Tests {
|
||||||
|
|
||||||
|
@ -44,6 +44,9 @@ public class Geoportal_DataMapper_Tests {
|
||||||
|
|
||||||
private static String USERNAME = "francesco.mangiacrapa";
|
private static String USERNAME = "francesco.mangiacrapa";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read context settings.
|
||||||
|
*/
|
||||||
public static void readContextSettings() {
|
public static void readContextSettings() {
|
||||||
|
|
||||||
try (InputStream input = new FileInputStream(gcube_config_path)) {
|
try (InputStream input = new FileInputStream(gcube_config_path)) {
|
||||||
|
@ -79,6 +82,9 @@ public class Geoportal_DataMapper_Tests {
|
||||||
clientProjects = GeoportalClientCaller.projects();
|
clientProjects = GeoportalClientCaller.projects();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test read project edit.
|
||||||
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testReadProjectEdit() {
|
public void testReadProjectEdit() {
|
||||||
|
|
||||||
|
@ -101,7 +107,10 @@ public class Geoportal_DataMapper_Tests {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//@Test
|
/**
|
||||||
|
* Test read project view.
|
||||||
|
*/
|
||||||
|
// @Test
|
||||||
public void testReadProjectView() {
|
public void testReadProjectView() {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue