Add SO APIs to Nokia VNFM adapter
[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.core.TestSelfRegistrationManager;
24 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestAAIExternalSystemInfoProvider;
25 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestAAIRestApiProvider;
26 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestGrantlessGrantManager;
27 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.TestSdcPackageProvider;
28 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.direct.notification.*;
29 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.vfc.*;
30 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.*;
31 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.restapi.*;
32 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestRealConfig;
33 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestServletInitializer;
34 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.*;
35 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.*;
36 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestLifecycleChangeNotificationManager;
37 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestProcessedNotification;
38 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestReportedAffectedConnectionPoints;
39 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestReportedAffectedCp;
40
41 @RunWith(Suite.class)
42 @Suite.SuiteClasses({
43         TestGenericExternalSystemInfoProvider.class,
44         TestIpMappingProvider.class,
45         TestMsbApiProvider.class,
46
47         TestAAINotificationProcessor.class,
48         TestAbstractManager.class,
49         TestGenericVnfManager.class,
50         TestL3NetworkManager.class,
51         TestLInterfaceManager.class,
52         TestVnfcManager.class,
53         TestVserverManager.class,
54
55         TestAAIExternalSystemInfoProvider.class,
56         TestAAIRestApiProvider.class,
57         TestGrantlessGrantManager.class,
58         TestSdcPackageProvider.class,
59
60         TestVfcExternalSystemInfoProvider.class,
61         TestVfcGrantManager.class,
62         TestVfcPackageProvider.class,
63         TestVfcRestApiProvider.class,
64         TestVfcNotificationSender.class,
65
66         TestCbamVnfdBuilder.class,
67         TestOnapR1VnfdBuilder.class,
68         TestOnapR2VnfdBuilder.class,
69         TestCbamVnfPackageBuilder.class,
70         TestOnapVnfPackageBuilder.class,
71
72         TestConverterApi.class,
73         TestLcmApi.class,
74         TestLcnApi.class,
75         TestSwaggerApi.class,
76         TestSwaggerDefinitionConsistency.class,
77
78         TestServletInitializer.class,
79         TestRealConfig.class,
80
81         TestCbamUtils.class,
82         TestStoreLoader.class,
83         TestSystemFunctions.class,
84         TestUserInvisibleError.class,
85         TestUserVisibleError.class,
86
87         TestLifecycleChangeNotificationManager.class,
88         TestProcessedNotification.class,
89         TestReportedAffectedConnectionPoints.class,
90         TestReportedAffectedCp.class,
91
92         TestAdditionalParams.class,
93         TestCbamCatalogManager.class,
94         TestCbamRestApiProvider.class,
95         TestCbamSecurityProvider.class,
96         TestCbamTokenProvider.class,
97         TestJobManager.class,
98         TestVfcGrantManager.class,
99         TestLifecycleManager.class,
100         TestSelfRegistrationManager.class,
101         TestNokiaSvnfmApplication.class,
102
103 })
104 public class FullUnitTestSuite {
105 }
106
107
108
109
110
111
112
113
114
115
116