All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.session.MockitoSessionLogger Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
/*
 * Copyright (c) 2018 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.session;

import org.mockito.MockitoSession;
import org.mockito.NotExtensible;

/**
 * Logger for {@linkplain org.mockito.quality.MockitoHint hints} emitted when
 * finishing mocking for a {@link MockitoSession}.
 * 

* This class is intended to be used by framework integrations, e.g. JUnit. When using * {@link MockitoSession} directly, you'll probably not need it. * * @since 2.15.0 */ @NotExtensible public interface MockitoSessionLogger { /** * Logs the hint. * * @param hint to log; never {@code null} */ void log(String hint); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy