aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap
diff options
context:
space:
mode:
authorputhuparambil.aditya <aditya.puthuparambil@bell.ca>2021-05-06 16:12:44 +0100
committerputhuparambil.aditya <aditya.puthuparambil@bell.ca>2021-05-13 11:20:07 +0100
commitd31d8e1cc167abf7835a1771b5ddc8d78aba9ac6 (patch)
tree056a897594706613f71316e87075a93c7d9d6ab7 /src/test/java/org/onap
parent26af9368115f5f7296aa4123f38b4e1c81a40b8d (diff)
Implement service and repository layers for storing temporal data
1. Basic structure created 2. Basic tests added 3. lombok.config included for coverage Issue-ID: CPS-194 Signed-off-by: puthuparambil.aditya <aditya.puthuparambil@bell.ca> Change-Id: Icf23c2e647106f7985dff14d9901806f7c4aa55a
Diffstat (limited to 'src/test/java/org/onap')
-rw-r--r--src/test/java/org/onap/cps/temporal/ApplicationTest.java43
-rw-r--r--src/test/java/org/onap/cps/temporal/repository/containers/TimescaleContainer.java (renamed from src/test/java/org/onap/cps/temporal/repository/TimescaleContainer.java)2
2 files changed, 1 insertions, 44 deletions
diff --git a/src/test/java/org/onap/cps/temporal/ApplicationTest.java b/src/test/java/org/onap/cps/temporal/ApplicationTest.java
deleted file mode 100644
index bae6e65..0000000
--- a/src/test/java/org/onap/cps/temporal/ApplicationTest.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * ============LICENSE_START=======================================================
- * Copyright (c) 2021 Bell Canada.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.cps.temporal;
-
-import org.assertj.core.util.Arrays;
-import org.junit.jupiter.api.Test;
-import org.onap.cps.temporal.repository.TimescaleContainer;
-import org.springframework.boot.test.context.SpringBootTest;
-
-// This test class without any assertion is obviously not really useful.
-// Its only purpose is to be able to cover current code.
-// It should be deleted when more code will be added to the project.
-@SpringBootTest
-class ApplicationTest {
-
- private static final TimescaleContainer TIMESCALE_CONTAINER = TimescaleContainer.getInstance();
-
- static {
- TIMESCALE_CONTAINER.start();
- }
-
- @Test
- void testMain() {
- Application.main(Arrays.array());
- }
-
-}
diff --git a/src/test/java/org/onap/cps/temporal/repository/TimescaleContainer.java b/src/test/java/org/onap/cps/temporal/repository/containers/TimescaleContainer.java
index 73b8c13..a6ad5db 100644
--- a/src/test/java/org/onap/cps/temporal/repository/TimescaleContainer.java
+++ b/src/test/java/org/onap/cps/temporal/repository/containers/TimescaleContainer.java
@@ -16,7 +16,7 @@
* ============LICENSE_END=========================================================
*/
-package org.onap.cps.temporal.repository;
+package org.onap.cps.temporal.repository.containers;
import org.testcontainers.containers.PostgreSQLContainer;
import org.testcontainers.utility.DockerImageName;