Added additional test in AafUserRoleTest.java 67/82367/1
authorSudarshan Kumar <sudars19@in.ibm.com>
Fri, 15 Mar 2019 05:51:05 +0000 (11:21 +0530)
committerSudarshan Kumar <sudars19@in.ibm.com>
Fri, 15 Mar 2019 05:58:09 +0000 (11:28 +0530)
Added additional test in AafUserRoleTest.java

Issue-ID: DMAAP-1098
Change-Id: Ic25143aa1ad7f47e9c513ccee9a52639249d25ad
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
src/test/java/org/onap/dmaap/dbcapi/aaf/AafUserRoleTest.java

index 6328c21..88fff87 100644 (file)
@@ -4,6 +4,8 @@
  * ================================================================================
  * Copyright (C) 2019 IBM Intellectual Property. All rights reserved.
  * ================================================================================
+ * Modifications Copyright (c) 2019 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
 
 package org.onap.dmaap.dbcapi.aaf;
 
-import org.junit.Test;
-
 import static org.hamcrest.CoreMatchers.is;
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertThat;
+
+import org.junit.Before;
+import org.junit.Test;
 
 public class AafUserRoleTest {
 
+    AafUserRole aafUserRole;
+
+    @Before
+    public void setUp() {
+        aafUserRole = new AafUserRole("xyz", "admin");
+    }
+
+    @Test
+    public void testGetIdentity() {
+        aafUserRole.setIdentity("xyz");
+        assertEquals("xyz", aafUserRole.getIdentity());
+    }
+
+    @Test
+    public void testGetRole() {
+        aafUserRole.setRole("admin");
+        assertEquals("admin", aafUserRole.getRole());
+    }
+
     @Test
     public void toJSON() {
-        AafUserRole role = new AafUserRole("test","admin");
+        AafUserRole role = new AafUserRole("test", "admin");
         assertThat(role.toJSON(), is(" { \"user\": \"test\", \"role\": \"admin\" }"));
     }
 }
\ No newline at end of file