Skip to content

Commit

Permalink
LPD-33798 Remove unnecessary private variables and adding teardown fo…
Browse files Browse the repository at this point in the history
…r jsonObject
  • Loading branch information
tomibiro committed Sep 10, 2024
1 parent f9564e8 commit 8c68c31
Showing 1 changed file with 5 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

package com.liferay.portal.security.sso.openid.connect.internal;

import com.liferay.petra.function.UnsafeConsumer;
import com.liferay.portal.kernel.json.JSONObject;
import com.liferay.portal.kernel.json.JSONUtil;
import com.liferay.portal.test.rule.LiferayUnitTestRule;
Expand All @@ -15,6 +14,7 @@

import java.util.Map;

import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.ClassRule;
Expand All @@ -23,10 +23,6 @@

import org.mockito.Mockito;

import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.mock.web.MockHttpSession;

/**
* @author Tamas Biro
*/
Expand All @@ -41,16 +37,11 @@ public class OpenIdConnectAuthenticationHandlerImplTest {
public void setUp() {
_openIdConnectAuthenticationHandlerImpl =
new OpenIdConnectAuthenticationHandlerImpl();
_mockHttpServletRequest = new MockHttpServletRequest();
_mockHttpServletResponse = new MockHttpServletResponse();
_mockHttpSession = new MockHttpSession();
_userIdUnsafeConsumer = new UnsafeConsumer<Long, Exception>() {

@Override
public void accept(Long aLong) {
}
}

};
@After
public void tearDown() {
_jsonObject = null;
}

@Test
Expand Down Expand Up @@ -97,11 +88,7 @@ private Map<String, Object> _processClaimSet(String claimSetJSON)
}

private JSONObject _jsonObject;
private MockHttpServletRequest _mockHttpServletRequest;
private MockHttpServletResponse _mockHttpServletResponse;
private MockHttpSession _mockHttpSession;
private OpenIdConnectAuthenticationHandlerImpl
_openIdConnectAuthenticationHandlerImpl;
private UnsafeConsumer<Long, Exception> _userIdUnsafeConsumer;

}

0 comments on commit 8c68c31

Please sign in to comment.