2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2023 Nordix Foundation.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.clamp.models.acm.concepts;
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.junit.jupiter.api.Assertions.assertNotEquals;
26 import static org.junit.jupiter.api.Assertions.assertNotNull;
28 import java.util.UUID;
29 import org.junit.jupiter.api.Test;
31 public class ParticipantsSupportedElementTypesTest {
33 private static final String ID = "a95757ba-b34a-4049-a2a8-46773abcbe5e";
36 void testParticipant() {
38 var p0 = new ParticipantSupportedElementType();
39 p0.setId(UUID.fromString(ID));
40 assertEquals(ID, p0.getId().toString());
42 var p1 = new ParticipantSupportedElementType(p0);
44 assertThat(p0).usingRecursiveComparison().isEqualTo(p1);
48 void testParticipantLombok() {
49 assertNotNull(new ParticipantSupportedElementType());
50 var p0 = new ParticipantSupportedElementType();
52 assertThat(p0.toString()).contains("ParticipantSupportedElementType");
53 assertThat(p0.hashCode()).isNotZero();
54 assertThat(p0).usingRecursiveComparison().isEqualTo(new ParticipantSupportedElementType(p0));
55 assertNotEquals(null, p0);
58 var p1 = new ParticipantSupportedElementType();
60 p1.setId(UUID.fromString(ID));
61 p1.setTypeName("name");
62 p1.setTypeVersion("1.0.0");
64 assertThat(p1.toString()).contains("ParticipantSupportedElementType");
65 assertNotEquals(0, p1.hashCode());
66 assertNotEquals(p1, p0);
67 assertNotEquals(null, p1);
70 var p2 = new ParticipantSupportedElementType();
73 assertThat(p0).usingRecursiveComparison().isEqualTo(p2);