Re-format source code
[policy/engine.git] / PolicyEngineUtils / src / test / java / org / onap / policy / utils / test / PEDependencyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineUtils
4  * ================================================================================
5  * Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
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.policy.utils.test;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 import org.apache.maven.model.Exclusion;
29 import org.junit.Test;
30 import org.onap.policy.api.PEDependency;
31
32 public class PEDependencyTest {
33
34     @Test
35     public void pojoTests() {
36         PEDependency pe = new PEDependency();
37         pe.setArtifactId("test");
38         pe.setGroupId("test");
39         pe.setVersion("1");
40         pe.setType("jar");
41         pe.setScope("test");
42         pe.setClassifier("pom");
43         List<Exclusion> exclusions = new ArrayList<>();
44         Exclusion exclusion = new Exclusion();
45         exclusion.setArtifactId("ex1");
46         exclusion.setGroupId("eG");
47         exclusions.add(exclusion);
48         pe.setExclusions(exclusions);
49         pe.getDependency();
50         assertEquals(exclusions, pe.getExclusions());
51         assertEquals("pom", pe.getClassifier());
52         assertEquals("test", pe.getScope());
53         assertEquals("jar", pe.getType());
54         assertEquals("1", pe.getVersion());
55         assertEquals("test", pe.getGroupId());
56         assertEquals("test", pe.getArtifactId());
57     }
58
59 }