Added test case for Configuration class
[appc.git] / appc-core / appc-common-bundle / src / test / java / org / onap / appc / configuration / ConfigurationFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
6  * file except in compliance with the License. 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 distributed under the License
11  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12  * or implied. See the License for the specific language governing permissions and limitations under
13  * the License.
14  *
15  * SPDX-License-Identifier: Apache-2.0
16  * ============LICENSE_END=========================================================
17  */
18
19 package org.onap.appc.configuration;
20
21 import static org.junit.Assert.assertNotNull;
22 import java.util.Properties;
23 import org.junit.Test;
24
25 public class ConfigurationFactoryTest {
26
27     @Test
28     public void testGetConfiguration() {
29         assertNotNull(ConfigurationFactory.getConfiguration(new Object()));
30     }
31
32     @Test
33     public void testGetConfigurationWithProperties() {
34         Properties properties = new Properties();
35         properties.setProperty("key", "value");
36         assertNotNull(ConfigurationFactory.getConfiguration(properties));
37     }
38 }