blob: 0eb271fd6123d179310648d67d1f46fc8724b8b5 [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.invocation;
import org.mockito.Incubating;
/**
* The information about stubbing, for example the location of stubbing.
*/
@Incubating
public interface StubInfo {
/**
* @return the location where the invocation was stubbed.
*/
Location stubbedAt();
}