Skip to content

v0.2.51..v0.2.52 changeset ConflationResourceTest.java

Garret Voltz edited this page Jan 15, 2020 · 1 revision
diff --git a/hoot-services/src/test/java/hoot/services/controllers/conflation/ConflationResourceTest.java b/hoot-services/src/test/java/hoot/services/controllers/conflation/ConflationResourceTest.java
index 54a27c7..d739516 100644
--- a/hoot-services/src/test/java/hoot/services/controllers/conflation/ConflationResourceTest.java
+++ b/hoot-services/src/test/java/hoot/services/controllers/conflation/ConflationResourceTest.java
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2016, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2016, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 package hoot.services.controllers.conflation;
 
@@ -34,13 +34,15 @@ import javax.ws.rs.core.MediaType;
 import javax.ws.rs.core.Response;
 
 import org.junit.Test;
+import org.junit.experimental.categories.Category;
 import org.junit.runner.RunWith;
 import org.springframework.test.context.ContextConfiguration;
 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
 import org.springframework.test.context.support.AnnotationConfigContextLoader;
 import org.springframework.transaction.annotation.Transactional;
 
-import hoot.services.jerseyframework.HootServicesJerseyTestAbstract;
+import hoot.services.UnitTest;
+import hoot.services.controllers.osm.OSMResourceTestAbstract;
 import hoot.services.jerseyframework.HootServicesSpringTestConfig;
 import hoot.services.job.Job;
 import hoot.services.utils.MapUtils;
@@ -49,9 +51,10 @@ import hoot.services.utils.MapUtils;
 @RunWith(SpringJUnit4ClassRunner.class)
 @ContextConfiguration(classes = HootServicesSpringTestConfig.class, loader = AnnotationConfigContextLoader.class)
 @Transactional
-public class ConflationResourceTest extends HootServicesJerseyTestAbstract {
+public class ConflationResourceTest extends OSMResourceTestAbstract {
 
     @Test
+    @Category(UnitTest.class)
     public void testConflate() throws Exception {
         long userId = MapUtils.insertUser();
         long mapId = MapUtils.insertMap(userId);
@@ -82,5 +85,6 @@ public class ConflationResourceTest extends HootServicesJerseyTestAbstract {
         assertEquals(3, job.getCommands().length);
         assertEquals(ConflateCommand.class, job.getCommands()[0].getClass());
         assertEquals(UpdateMapTagsCommand.class, job.getCommands()[1].getClass());
+
     }
 }
Clone this wiki locally