Include impacted changes for APPC-346,APPC-348
[appc.git] / appc-dispatcher / appc-dispatcher-common / appc-data-access-lib / src / test / java / org / onap / appc / dao / util / exception / DataAccessExceptionTest.java
  * ============LICENSE_END=========================================================
  */
 
-package org.onap.appc.executionqueue.impl;
+package org.onap.appc.dao.util.exception;
 
-import org.onap.appc.executionqueue.ExecutionQueueService;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.powermock.core.classloader.annotations.PrepareForTest;
+import org.powermock.modules.junit4.PowerMockRunner;
 
-public class ExecutionQueueServiceFactory {
+import static org.junit.Assert.*;
 
-    private static class ExecutionQueueServiceHolder {
-        public static final ExecutionQueueService executionQueueService = new ExecutionQueueServiceImpl();
+@RunWith(PowerMockRunner.class)
+@PrepareForTest({DataAccessExceptionTest.class})
+public class DataAccessExceptionTest {
+    @Before
+    public void setUp() throws Exception {
     }
 
-    public static ExecutionQueueService getExecutionQueueService() {
-        return ExecutionQueueServiceHolder.executionQueueService;
+    @Test(expected = DataAccessException.class)
+    public void testNonArgumentConstructor() throws DataAccessException {
+        throw new DataAccessException();
     }
 }