Code formatting of configuration framework
[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.FallbackToGlobalNamespaceTest;
26 import org.onap.config.test.GlobalAndNamespaceConfigTest;
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 @RunWith(Suite.class)
41 @Suite.SuiteClasses(
42         {ConfigurationUtilsTest.class, JavaPropertiesConfigTest.class, JsonConfigTest.class, XmlConfigTest.class,
43                 YamlConfigTest.class, CliFallbackAndLookupTest.class, CliTest.class, ConfigSourceLocationTest.class,
44                 FallbackConfigTest.class, FallbackToGlobalNamespaceTest.class, GlobalAndNamespaceConfigTest.class,
45                 ModeAsConfigPropTest.class, MultiTenancyConfigTest.class, NodeSpecificCliTest.class,
46                 ValidateDefaultModeTest.class, LoadOrderMergeAndOverrideTest.class})
47 public class TestCMSuite extends junit.framework.TestSuite {
48
49     private TestCMSuite() {
50         // prevent instantiation
51     }
52 }