unit test for tca-gen2
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-tca-web / src / test / java / org / onap / dcae / analytics / tca / web / validation / TcaAppPropertiesValidatorTest.java
1 /*
2  * ================================================================================
3  * Copyright (c) 2020 ChinaMobile. All rights reserved.
4  * ================================================================================
5  * Copyright Copyright (c) 2019 IBM
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  *
20  */
21 package org.onap.dcae.analytics.tca.web.validation;
22
23 import org.junit.jupiter.api.Test;
24 import org.mockito.Mockito;
25 import org.onap.dcae.analytics.model.AnalyticsProfile;
26 import org.onap.dcae.analytics.tca.web.TcaAppProperties;
27 import org.onap.dcae.analytics.test.BaseAnalyticsSpringBootIT;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.core.env.Environment;
30 import org.springframework.test.context.ActiveProfiles;
31 import org.springframework.validation.Errors;
32
33 @ActiveProfiles({AnalyticsProfile.DEV_PROFILE_NAME})
34 public class TcaAppPropertiesValidatorTest extends BaseAnalyticsSpringBootIT {
35
36     @Autowired
37     Environment environment;
38     
39     @Test
40     void TestTcaAppPropertiesValidator() {
41         TcaAppProperties properties = new TcaAppProperties(environment);
42         TcaAppPropertiesValidator validate = new TcaAppPropertiesValidator();
43         Errors errors = Mockito.mock(Errors.class);
44         validate.validate(properties, errors);        
45     }
46
47 }