aboutsummaryrefslogtreecommitdiffstats
path: root/ms
diff options
context:
space:
mode:
authorDan Timoney <dt5972@att.com>2018-09-20 15:37:00 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-20 15:37:00 +0000
commit69c243adcb124824eab27aaa46d9d5bb2a9a9466 (patch)
treee0c781ee0480c0adf8016e4b0abc703338fa54f8 /ms
parent9071a51d718aba137a10c473bcfa8e199bf5b4c2 (diff)
parent120824c9a2c31122ca62bfd05ec5a63ef4b0bc06 (diff)
Merge "added test case to PolicyPropertyMethodUtilsTest"
Diffstat (limited to 'ms')
-rw-r--r--ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/core/policy/PolicyPropertyMethodUtilsTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/core/policy/PolicyPropertyMethodUtilsTest.java b/ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/core/policy/PolicyPropertyMethodUtilsTest.java
index f527b38b..f54e680e 100644
--- a/ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/core/policy/PolicyPropertyMethodUtilsTest.java
+++ b/ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/core/policy/PolicyPropertyMethodUtilsTest.java
@@ -4,6 +4,8 @@
* ================================================================================
* Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
* ================================================================================
+ * Modifications Copyright (C) 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,7 @@
package org.onap.ccsdk.apps.ms.neng.core.policy;
import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
import org.junit.Test;
@@ -34,5 +37,7 @@ public class PolicyPropertyMethodUtilsTest {
assertEquals("TRLAKDG", PolicyPropertyMethodUtils.substring("TRLAKDG", "-11"));
assertEquals("XYSZ1NNN", PolicyPropertyMethodUtils.toUpperCase("XySz1NNN"));
assertEquals("xysz1nnn", PolicyPropertyMethodUtils.toLowerCase("XySz1NNN"));
+ assertTrue(PolicyPropertyMethodUtils.genUuid() instanceof String);
+ assertTrue(PolicyPropertyMethodUtils.getIsoDateString() instanceof String);
}
}