gFeed/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/InfrastructureTest.java

25 lines
763 B
Java

package org.gcube.data.publishing.gCatFeeder.catalogues.gCat;
import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.databind.JsonMappingException;
import org.gcube.data.publishing.gCatFeeder.model.InternalConversionException;
import org.gcube.data.publishing.gCatFeeder.tests.InfrastructureTests;
import org.gcube.gcat.client.Profile;
import org.junit.Assume;
import org.junit.Test;
import java.io.IOException;
import java.net.MalformedURLException;
public class InfrastructureTest extends InfrastructureTests {
@Test
public void testIsServicePresent() throws MalformedURLException {
Assume.assumeTrue(isTestInfrastructureEnabled());
System.out.println("START HERE");
new Profile();
}
}