f0b24762029fcf0f69b1f55527c81e5286504bca
[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 //import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.TestCbamRestApiProvider;
45
46 @RunWith(Suite.class)
47 @Suite.SuiteClasses({
48         TestGenericExternalSystemInfoProvider.class,
49         TestIpMappingProvider.class,
50         TestMsbApiProvider.class,
51
52         TestAAINotificationProcessor.class,
53         TestAbstractManager.class,
54         TestGenericVnfManager.class,
55         TestL3NetworkManager.class,
56         TestLInterfaceManager.class,
57         TestVnfcManager.class,
58         TestVserverManager.class,
59
60         TestAAIExternalSystemInfoProvider.class,
61         TestAAIRestApiProvider.class,
62         TestGrantlessGrantManager.class,
63         TestSdcPackageProvider.class,
64
65         TestVfcExternalSystemInfoProvider.class,
66         TestVfcGrantManager.class,
67         TestVfcPackageProvider.class,
68         TestVfcRestApiProvider.class,
69         TestVfcNotificationSender.class,
70
71         TestCbamVnfdBuilder.class,
72         TestOnapVnfdBuilder.class,
73         TestCbamVnfPackageBuilder.class,
74         TestOnapVnfPackageBuilder.class,
75
76         TestConverterApi.class,
77         TestLcmApi.class,
78         TestLcnApi.class,
79         TestSwaggerApi.class,
80         TestSwaggerDefinitionConsistency.class,
81
82         TestConditions.class,
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         TestDriverProperties.class,
103         TestJobManager.class,
104         TestVfcGrantManager.class,
105         TestLifecycleManager.class,
106         TestSelfRegistrationManager.class,
107         TestNokiaSvnfmApplication.class,
108
109 })
110 public class FullUnitTestSuite {
111 }
112
113
114
115
116
117
118
119
120
121
122