diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2018-08-14 16:43:53 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2018-08-15 11:34:13 -0400 |
commit | 011cdf2d4fa47ab078061d3700a95c3d3764e5e0 (patch) | |
tree | 8b32d1afd9b046efe5049cafbe33c8ada85bf9b9 /integrity-audit/src/test/java | |
parent | 6509e95ef278ee141c706cb66fe269e146ef888e (diff) |
Fix checkstyle comments etc.
Adding javadoc comments, renaming variables names,
fixed whitespace and 120 length. Also some variables
were made final since they were declared further from
usage. Splitting out Asserts.
Still remaining are the abbreviations.
Issue-ID: POLICY-881
Change-Id: I31ce5a9eea02578bce023c0c607a19108bb726fa
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'integrity-audit/src/test/java')
-rw-r--r-- | integrity-audit/src/test/java/org/onap/policy/common/ia/AuditorTimeTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/integrity-audit/src/test/java/org/onap/policy/common/ia/AuditorTimeTest.java b/integrity-audit/src/test/java/org/onap/policy/common/ia/AuditorTimeTest.java index 7da157f2..b8e4ba5d 100644 --- a/integrity-audit/src/test/java/org/onap/policy/common/ia/AuditorTimeTest.java +++ b/integrity-audit/src/test/java/org/onap/policy/common/ia/AuditorTimeTest.java @@ -20,7 +20,8 @@ package org.onap.policy.common.ia; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; import org.junit.Test; import org.onap.policy.common.utils.time.CurrentTime; |