use of com.synopsys.integration.blackduck.dockerinspector.output.ImageTarFilename in project blackduck-docker-inspector by blackducksoftware.
the class DockerClientManagerTest method setUp.
@BeforeAll
public static void setUp() {
Logger rootLogger = (Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
rootLogger.setLevel(Level.INFO);
Logger integrationLogger = (Logger) LoggerFactory.getLogger("com.synopsys.integration");
integrationLogger.setLevel(Level.DEBUG);
config = Mockito.mock(Config.class);
programPaths = Mockito.mock(ProgramPaths.class);
FileOperations fileOperations = new FileOperations();
dockerClientManager = new DockerClientManager(fileOperations, new ImageNameResolver(), config, new ImageTarFilename(), programPaths);
}
Aggregations