2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.onap.policy.models.tosca.authorative.concepts;
 
  23 import static org.assertj.core.api.Assertions.assertThatThrownBy;
 
  24 import static org.junit.Assert.assertEquals;
 
  26 import org.junit.Test;
 
  29  * Test the other constructors, as {@link PojosTest} tests the other methods.
 
  31 public class ToscaPolicyTypeIdentifierTest extends ToscaIdentifierTestBase<ToscaPolicyTypeIdentifier> {
 
  32     private static final String NAME = "my-name";
 
  33     private static final String VERSION = "1.2.3";
 
  35     public ToscaPolicyTypeIdentifierTest() {
 
  36         super(ToscaPolicyTypeIdentifier.class);
 
  40     public void testAllArgsConstructor() {
 
  41         assertThatThrownBy(() -> new ToscaPolicyTypeIdentifier(null, VERSION)).isInstanceOf(NullPointerException.class);
 
  42         assertThatThrownBy(() -> new ToscaPolicyTypeIdentifier(NAME, null)).isInstanceOf(NullPointerException.class);
 
  44         ToscaPolicyTypeIdentifier orig = new ToscaPolicyTypeIdentifier(NAME, VERSION);
 
  45         assertEquals(NAME, orig.getName());
 
  46         assertEquals(VERSION, orig.getVersion());
 
  50     public void testCopyConstructor() {
 
  51         assertThatThrownBy(() -> new ToscaPolicyTypeIdentifier(null)).isInstanceOf(NullPointerException.class);
 
  53         ToscaPolicyTypeIdentifier orig = new ToscaPolicyTypeIdentifier();
 
  55         // verify with null values
 
  56         assertEquals(orig.toString(), new ToscaPolicyTypeIdentifier(orig).toString());
 
  58         // verify with all values
 
  59         orig = new ToscaPolicyTypeIdentifier(NAME, VERSION);
 
  60         assertEquals(orig.toString(), new ToscaPolicyTypeIdentifier(orig).toString());