Changes for Checkstyle 8.32
[policy/models.git] / models-pdp / src / test / java / org / onap / policy / models / pdp / concepts / ModelsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.pdp.concepts;
23
24 import com.openpojo.reflection.filters.FilterClassName;
25 import com.openpojo.reflection.filters.FilterPackageInfo;
26 import com.openpojo.validation.Validator;
27 import com.openpojo.validation.ValidatorBuilder;
28 import com.openpojo.validation.test.impl.GetterTester;
29 import com.openpojo.validation.test.impl.SetterTester;
30 import org.junit.Test;
31 import org.onap.policy.common.utils.test.ToStringTester;
32
33 /**
34  * Class to perform unit testing of models.
35  *
36  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
37  */
38 public class ModelsTest {
39     private static final String POJO_PACKAGE = "org.onap.policy.models.pdp.concepts";
40
41     @Test
42     public void testPdpModels() {
43         final Validator validator = ValidatorBuilder.create().with(new ToStringTester()).with(new SetterTester())
44                 .with(new GetterTester()).build();
45
46         // exclude Test classes and PdpMessage
47         validator.validate(POJO_PACKAGE, new FilterPackageInfo(), new FilterClassName("^((?!Test$).)*$"),
48                 new FilterClassName("^((?!" + PdpMessage.class.getName() + ").)*$"));
49     }
50 }