Removed code that stored configuration in DB
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-core / src / test / java / org / onap / config / TestCMSuite.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
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
17 package org.onap.config;
18
19 import org.junit.runner.RunWith;
20 import org.junit.runners.Suite;
21 import org.onap.config.test.CLIFallbackAndLookupTest;
22 import org.onap.config.test.CliTest;
23 import org.onap.config.test.ConfigSourceLocationTest;
24 import org.onap.config.test.FallbackConfigTest;
25 import org.onap.config.test.FallbackToGlobalNSTest;
26 import org.onap.config.test.GlobalAndNSConfigTest;
27 import org.onap.config.test.JAVAPropertiesConfigTest;
28 import org.onap.config.test.JSONConfigTest;
29 import org.onap.config.test.LoadOrderMergeAndOverrideTest;
30 import org.onap.config.test.ModeAsConfigPropTest;
31 import org.onap.config.test.MultiTenancyConfigTest;
32 import org.onap.config.test.NodeSpecificCliTest;
33 import org.onap.config.test.ValidateDefaultModeTest;
34 import org.onap.config.test.XMLConfigTest;
35 import org.onap.config.test.YAMLConfigTest;
36
37 /**
38  * Created by sheetalm on 10/25/2016.
39  */
40
41 @RunWith(Suite.class)
42 @Suite.SuiteClasses({
43         ConfigurationUtilsTest.class,
44         JAVAPropertiesConfigTest.class,
45         JSONConfigTest.class,
46         XMLConfigTest.class,
47         YAMLConfigTest.class,
48         CLIFallbackAndLookupTest.class,
49         CliTest.class,
50         ConfigSourceLocationTest.class,
51         FallbackConfigTest.class,
52         FallbackToGlobalNSTest.class,
53         GlobalAndNSConfigTest.class,
54         ModeAsConfigPropTest.class,
55         MultiTenancyConfigTest.class,
56         NodeSpecificCliTest.class,
57         ValidateDefaultModeTest.class,
58         LoadOrderMergeAndOverrideTest.class})
59 public class TestCMSuite extends junit.framework.TestSuite {
60
61     private TestCMSuite() {
62         // prevent instantiation
63     }
64 }