Skip to content

Commit

Permalink
Remove wildcard imports
Browse files Browse the repository at this point in the history
  • Loading branch information
VaishSiddharth committed May 29, 2024
1 parent 7cc4e03 commit 108a43e
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
*/
package com.ozonehis.eip.utils;

import static org.mockito.Mockito.*;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;

import org.junit.jupiter.api.*;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;
import org.slf4j.Logger;
import org.springframework.context.ApplicationContext;
Expand All @@ -26,7 +28,7 @@ public void setUp() {
shutdownHandler = new ShutdownHandler();
applicationContext = mock(ConfigurableApplicationContext.class);
shutdownHandler.setApplicationContext(applicationContext);
logger = Mockito.mock(Logger.class);
logger = mock(Logger.class);
ShutdownHandler.LOGGER = logger;
}

Expand Down

0 comments on commit 108a43e

Please sign in to comment.