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