diff options
author | Jim Hahn <jrh3@att.com> | 2020-01-10 11:30:21 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-01-10 14:44:58 -0500 |
commit | 1f049a441ac4efc63fb9671107649d6106f02f7c (patch) | |
tree | e9964640a0a65c015a9c7b5a4f8a48a674f52133 /integrity-monitor/src/test/java | |
parent | 613946040a9e49bed487b5946f925bb6f22c5ee8 (diff) |
Address items deprecated by move to java 11
Addressed the following deprecated items:
- "new Integer(xxx)"
- Observable/Observer
- Mockito.anyObject()
Added assertion to a junit test to address a sonar issue.
Did not address deprecated Nashorn javascript interpreter; that will be
done in a separate review.
Updated licenses.
Issue-ID: POLICY-1406
Signed-off-by: Jim Hahn <jrh3@att.com>
Change-Id: I81fd158f831e01d5410d79898ced658285787d47
Diffstat (limited to 'integrity-monitor/src/test/java')
-rw-r--r-- | integrity-monitor/src/test/java/org/onap/policy/common/im/StateManagementTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integrity-monitor/src/test/java/org/onap/policy/common/im/StateManagementTest.java b/integrity-monitor/src/test/java/org/onap/policy/common/im/StateManagementTest.java index a335b2c2..76642443 100644 --- a/integrity-monitor/src/test/java/org/onap/policy/common/im/StateManagementTest.java +++ b/integrity-monitor/src/test/java/org/onap/policy/common/im/StateManagementTest.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * Integrity Monitor * ================================================================================ - * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-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. @@ -251,8 +251,8 @@ public class StateManagementTest extends IntegrityMonitorTestBase { final EntityManagerFactory mockedEmf = getMockedEntityManagerFactory(mockedEm); final TypedQuery<StateManagementEntity> mockedQuery = mock(TypedQuery.class); - when(mockedQuery.setFlushMode(Mockito.anyObject())).thenReturn(mockedQuery); - when(mockedQuery.setLockMode(Mockito.anyObject())).thenReturn(mockedQuery); + when(mockedQuery.setFlushMode(Mockito.any())).thenReturn(mockedQuery); + when(mockedQuery.setLockMode(Mockito.any())).thenReturn(mockedQuery); when(mockedEm.createQuery(anyString(), any(StateManagementEntity.class.getClass()))).thenReturn(mockedQuery); doThrow(QueryTimeoutException.class).when(mockedQuery).getResultList(); |