1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.invocation;
6
7import org.mockito.Incubating;
8
9/**
10 * The information about stubbing, for example the location of stubbing.
11 */
12@Incubating
13public interface StubInfo {
14
15    /**
16     * @return the location where the invocation was stubbed.
17     */
18    Location stubbedAt();
19}
20