From d44d6c6ea00241f586ee7fb3b173821d98decbab Mon Sep 17 00:00:00 2001 From: Quoc Nghia Nguyen Date: Wed, 16 May 2018 17:19:55 +0200 Subject: Register with MSB after being launched Change-Id: I96c84f8b8e0757d68461a0e631d6ed432f64ecad Issue-ID: EXTAPI-90 Signed-off-by: Quoc-Nghia Nguyen --- src/test/java/org/onap/nbi/apis/TestConfig.java | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/test/java/org/onap/nbi/apis/TestConfig.java (limited to 'src/test/java') diff --git a/src/test/java/org/onap/nbi/apis/TestConfig.java b/src/test/java/org/onap/nbi/apis/TestConfig.java new file mode 100644 index 0000000..a3afa1c --- /dev/null +++ b/src/test/java/org/onap/nbi/apis/TestConfig.java @@ -0,0 +1,29 @@ +/** + * Copyright (c) 2018 Orange + *

+ * 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. + */ + +package org.onap.nbi.apis; + +import org.onap.nbi.ServiceRegisterRunner; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.ComponentScan; +import org.springframework.context.annotation.FilterType; + +@SpringBootApplication +// Exclude MSB register runner when running tests +@ComponentScan(excludeFilters = @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, classes = ServiceRegisterRunner.class)) +public class TestConfig { +} + -- cgit 1.2.3-korg