Updating Nokia driver
[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.TestCbamRestApiProvider;
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.TestGenericExternalSystemInfoProvider;
22 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.TestIpMappingProvider;
23 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.TestMsbApiProvider;
24 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.vfc.*;
25 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestCbamVnfPackageBuilder;
26 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestCbamVnfdBuilder;
27 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestOnapVnfPackageBuilder;
28 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.packagetransformer.TestOnapVnfdBuilder;
29 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.restapi.*;
30 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestConditions;
31 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestRealConfig;
32 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.TestServletInitializer;
33 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.TestCbamUtils;
34 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.TestStoreLoader;
35 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util.TestSystemFunctions;
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
39 @RunWith(Suite.class)
40 @Suite.SuiteClasses({
41
42         TestCbamRestApiProvider.class,
43         TestGenericExternalSystemInfoProvider.class,
44         TestIpMappingProvider.class,
45         TestMsbApiProvider.class,
46
47         TestVfcExternalSystemInfoProvider.class,
48         TestVfcGrantManager.class,
49         TestVfcPackageProvider.class,
50         TestVfcRestApiProvider.class,
51         TestVfcNotificationSender.class,
52
53         TestCbamVnfdBuilder.class,
54         TestOnapVnfdBuilder.class,
55         TestCbamVnfPackageBuilder.class,
56         TestOnapVnfPackageBuilder.class,
57
58         TestConverterApi.class,
59         TestLcmApi.class,
60         TestLcnApi.class,
61         TestSwaggerApi.class,
62         TestSwaggerDefinitionConsistency.class,
63
64         TestConditions.class,
65         TestServletInitializer.class,
66         TestRealConfig.class,
67
68         TestCbamUtils.class,
69         TestStoreLoader.class,
70         TestSystemFunctions.class,
71
72         TestAdditionalParams.class,
73         TestCbamCatalogManager.class,
74         TestCbamTokenProvider.class,
75         TestDriverProperties.class,
76         TestJobManager.class,
77         TestVfcGrantManager.class,
78         TestLifecycleChangeNotificationManager.class,
79         TestLifecycleManager.class,
80         TestSelfRegistrationManager.class,
81
82         TestNokiaSvnfmApplication.class,
83
84 })
85 public class FullUnitTestSuite {
86 }
87
88
89
90
91
92
93
94
95
96
97
98
99