Removing jackson to mitigate cve-2017-4995
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / test / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / FullUnitTestSuite.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia;
17
18 import org.junit.runner.RunWith;
19 import org.junit.runners.Suite;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.TestGenericExternalSystemInfoProvider;
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.TestIpMappingProvider;
22 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.TestMsbApiProvider;
23 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestAAIExternalSystemInfoProvider;
24 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestAAIRestApiProvider;
25 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestGrantlessGrantManager;
26 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestSdcPackageProvider;
27 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.notification.*;
28 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.vfc.*;
29 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestCbamVnfPackageBuilder;
30 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestCbamVnfdBuilder;
31 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestOnapVnfPackageBuilder;
32 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestOnapVnfdBuilder;
33 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.restapi.*;
34 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestConditions;
35 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestRealConfig;
36 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestServletInitializer;
37 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.*;
38 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.*;
39 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestLifecycleChangeNotificationManager;
40 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestProcessedNotification;
41 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestReportedAffectedConnectionPoints;
42 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestReportedAffectedCp;
43
44 @RunWith(Suite.class)
45 @Suite.SuiteClasses({
46         TestGenericExternalSystemInfoProvider.class,
47         TestIpMappingProvider.class,
48         TestMsbApiProvider.class,
49
50         TestAAINotificationProcessor.class,
51         TestAbstractManager.class,
52         TestGenericVnfManager.class,
53         TestL3NetworkManager.class,
54         TestLInterfaceManager.class,
55         TestVnfcManager.class,
56         TestVserverManager.class,
57
58         TestAAIExternalSystemInfoProvider.class,
59         TestAAIRestApiProvider.class,
60         TestGrantlessGrantManager.class,
61         TestSdcPackageProvider.class,
62
63         TestVfcExternalSystemInfoProvider.class,
64         TestVfcGrantManager.class,
65         TestVfcPackageProvider.class,
66         TestVfcRestApiProvider.class,
67         TestVfcNotificationSender.class,
68
69         TestCbamVnfdBuilder.class,
70         TestOnapVnfdBuilder.class,
71         TestCbamVnfPackageBuilder.class,
72         TestOnapVnfPackageBuilder.class,
73
74         TestConverterApi.class,
75         TestLcmApi.class,
76         TestLcnApi.class,
77         TestSwaggerApi.class,
78         TestSwaggerDefinitionConsistency.class,
79
80         TestConditions.class,
81         TestServletInitializer.class,
82         TestRealConfig.class,
83
84         TestCbamUtils.class,
85         TestStoreLoader.class,
86         TestSystemFunctions.class,
87         TestUserInvisibleError.class,
88         TestUserVisibleError.class,
89
90         TestLifecycleChangeNotificationManager.class,
91         TestProcessedNotification.class,
92         TestReportedAffectedConnectionPoints.class,
93         TestReportedAffectedCp.class,
94
95         TestAdditionalParams.class,
96         TestCbamCatalogManager.class,
97         TestCbamRestApiProvider.class,
98         TestCbamSecurityProvider.class,
99         TestCbamTokenProvider.class,
100         TestDriverProperties.class,
101         TestJobManager.class,
102         TestVfcGrantManager.class,
103         TestLifecycleManager.class,
104         TestSelfRegistrationManager.class,
105         TestNokiaSvnfmApplication.class,
106
107 })
108 public class FullUnitTestSuite {
109 }
110
111
112
113
114
115
116
117
118
119
120