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