b37d95fff04f66de14f1a5fae462f2d5e7a858b7
[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.*;
32 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.restapi.*;
33 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestRealConfig;
34 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestServletInitializer;
35 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.*;
36 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.*;
37 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestLifecycleChangeNotificationManager;
38 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestProcessedNotification;
39 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestReportedAffectedConnectionPoints;
40 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.notification.TestReportedAffectedCp;
41
42 @RunWith(Suite.class)
43 @Suite.SuiteClasses({
44         TestGenericExternalSystemInfoProvider.class,
45         TestIpMappingProvider.class,
46         TestMsbApiProvider.class,
47
48         TestAAINotificationProcessor.class,
49         TestAbstractManager.class,
50         TestGenericVnfManager.class,
51         TestL3NetworkManager.class,
52         TestLInterfaceManager.class,
53         TestVnfcManager.class,
54         TestVserverManager.class,
55
56         TestAAIExternalSystemInfoProvider.class,
57         TestAAIRestApiProvider.class,
58         TestGrantlessGrantManager.class,
59         TestSdcPackageProvider.class,
60
61         TestSoLifecycleManager.class,
62
63         TestVfcExternalSystemInfoProvider.class,
64         TestVfcGrantManager.class,
65         TestVfcPackageProvider.class,
66         TestVfcRestApiProvider.class,
67         TestVfcNotificationSender.class,
68
69         TestCbamVnfdBuilder.class,
70         TestOnapR1VnfdBuilder.class,
71         TestOnapR2VnfdBuilder.class,
72         TestCbamVnfPackageBuilder.class,
73         TestOnapVnfPackageBuilder.class,
74
75         TestConverterApi.class,
76         TestLcmApi.class,
77         TestLcnApi.class,
78         TestSwaggerApi.class,
79         TestSwaggerDefinitionConsistency.class,
80
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         TestJobManager.class,
101         TestVfcGrantManager.class,
102         TestLifecycleManager.class,
103         TestSelfRegistrationManager.class,
104         TestNokiaSvnfmApplication.class,
105
106 })
107 public class FullUnitTestSuite {
108 }
109
110
111
112
113
114
115
116
117
118
119