added test case to TestCommonHeader.java 99/57699/6
authorSandeep J <sandeejh@in.ibm.com>
Thu, 26 Jul 2018 12:17:55 +0000 (17:47 +0530)
committerPatrick Brady <pb071s@att.com>
Fri, 27 Jul 2018 22:13:04 +0000 (22:13 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: I9ddee44a33daa768a73e7575ac5901b13e87237b
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-dispatcher/appc-dispatcher-common/domain-model-lib/src/test/java/org/onap/appc/domainmodel/lcm/TestCommonHeader.java

index 9f63a50..c9774b2 100644 (file)
@@ -4,6 +4,8 @@
 * ================================================================================
 * Copyright 2018 TechMahindra
 *=================================================================================
+* Modifications Copyright 2018 IBM.
+*=================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
@@ -21,6 +23,8 @@ package org.onap.appc.domainmodel.lcm;
 
 import static org.junit.Assert.*;
 
+import java.util.Date;
+
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
@@ -87,5 +91,12 @@ public class TestCommonHeader {
     public void testToString_ContainsString() {
         assertTrue(commonHeader.toString().contains("CommonHeader{flags"));
     }
+    
+    @Test
+    public void testTimeStamp() {
+      Date date=new Date();
+      commonHeader.setTimestamp(date);
+      assertEquals(date, commonHeader.getTimeStamp());
+    }
 
 }