diff options
author | Ruslan Kashapov <ruslan.kashapov@pantheon.tech> | 2021-02-04 17:26:01 +0200 |
---|---|---|
committer | Ruslan Kashapov <ruslan.kashapov@pantheon.tech> | 2021-02-04 17:31:20 +0200 |
commit | 5e1a5a7bde3a1650b86e2d22edde26520439757f (patch) | |
tree | 3bd0189d885b41ff351cce506a1672074bfc6852 /cps-nf-proxy-rest | |
parent | 50f56b64870ac6c988cf75e84da3836ca015c1e6 (diff) |
fix mvc tests skipped for rest services
IssueID: CPS-175
Change-Id: I0ec53bf1b00a7fe7413819398cc7eddd520b4358
Signed-off-by: Ruslan Kashapov <ruslan.kashapov@pantheon.tech>
Diffstat (limited to 'cps-nf-proxy-rest')
-rw-r--r-- | cps-nf-proxy-rest/src/test/java/org/onap/cps/TestApplication.java | 30 | ||||
-rw-r--r-- | cps-nf-proxy-rest/src/test/resources/application.yml | 5 |
2 files changed, 35 insertions, 0 deletions
diff --git a/cps-nf-proxy-rest/src/test/java/org/onap/cps/TestApplication.java b/cps-nf-proxy-rest/src/test/java/org/onap/cps/TestApplication.java new file mode 100644 index 0000000000..5e0e3679ee --- /dev/null +++ b/cps-nf-proxy-rest/src/test/java/org/onap/cps/TestApplication.java @@ -0,0 +1,30 @@ +/* + * ============LICENSE_START======================================================= + * Copyright (C) 2020 Pantheon.tech + * ================================================================================ + * 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. + * + * SPDX-License-Identifier: Apache-2.0 + * ============LICENSE_END========================================================= + */ + +package org.onap.cps; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +/** + * The @SpringBootApplication annotated class is required in order to run tests + * marked with @SpringBootTest annotation. + */ +@SpringBootApplication +public class TestApplication { +} diff --git a/cps-nf-proxy-rest/src/test/resources/application.yml b/cps-nf-proxy-rest/src/test/resources/application.yml new file mode 100644 index 0000000000..fed1559b8b --- /dev/null +++ b/cps-nf-proxy-rest/src/test/resources/application.yml @@ -0,0 +1,5 @@ + +rest: + api: + xnf-base-path: /xnf-proxy/api +spring: |