Checkstyle fixes to drools-pdp 66/109866/2
authorJim Hahn <jrh3@att.com>
Mon, 6 Jul 2020 17:29:47 +0000 (13:29 -0400)
committerJim Hahn <jrh3@att.com>
Mon, 6 Jul 2020 17:45:43 +0000 (13:45 -0400)
Issue-ID: POLICY-2696
Change-Id: I7f80737c52e3f16e03803118d92411e4ac39c5fb
Signed-off-by: Jim Hahn <jrh3@att.com>
feature-lifecycle/src/test/java/org/onap/policy/drools/lifecycle/LifecycleStateUnsupportedTest.java
feature-session-persistence/src/test/java/org/onap/policy/drools/persistence/DroolsSessionEntityTest.java
policy-core/src/test/java/org/onap/policy/drools/core/jmx/PdpJmxTest.java

index 14da6ab..1b7c62a 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP
  * ================================================================================
- * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@
 package org.onap.policy.drools.lifecycle;
 
 import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
-import static org.assertj.core.api.Java6Assertions.assertThatThrownBy;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
 
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
@@ -60,31 +60,31 @@ public abstract class LifecycleStateUnsupportedTest {
 
     @Test
     public void start() {
-        assertThatThrownBy(() -> state.start())
+        assertThatThrownBy(state::start)
             .isInstanceOf(UnsupportedOperationException.class);
     }
 
     @Test
     public void stop() {
-        assertThatThrownBy(() -> state.stop())
+        assertThatThrownBy(state::stop)
             .isInstanceOf(UnsupportedOperationException.class);
     }
 
     @Test
     public void shutdown() {
-        assertThatThrownBy(() -> state.shutdown())
+        assertThatThrownBy(state::shutdown)
             .isInstanceOf(UnsupportedOperationException.class);
     }
 
     @Test
     public void isAlive() {
-        assertThatThrownBy(() -> state.isAlive())
+        assertThatThrownBy(state::isAlive)
             .isInstanceOf(UnsupportedOperationException.class);
     }
 
     @Test
     public void status() {
-        assertThatThrownBy(() -> state.status())
+        assertThatThrownBy(state::status)
             .isInstanceOf(UnsupportedOperationException.class);
     }
 
index 3033a7b..2cc7d33 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * feature-session-persistence
  * ================================================================================
- * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2018, 2020 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -21,9 +21,7 @@
 package org.onap.policy.drools.persistence;
 
 import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotEquals;
-import static org.junit.Assert.assertTrue;
 
 import java.util.Date;
 import org.junit.Test;
index 7b565f7..e585a4b 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP
  * ================================================================================
- * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2018, 2020 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -23,7 +23,6 @@ package org.onap.policy.drools.core.jmx;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertSame;
-import static org.junit.Assert.assertTrue;
 
 import org.junit.Before;
 import org.junit.Test;