org.mockito.internal.invocation.StubInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.invocation;
import org.mockito.exceptions.PrintableInvocation;
import java.io.Serializable;
public class StubInfo implements Serializable {
private static final long serialVersionUID = 2125827349332068867L;
private PrintableInvocation stubbedAt;
public StubInfo(PrintableInvocation stubbedAt) {
this.stubbedAt = stubbedAt;
}
public String stubbedAt() {
return stubbedAt.getLocation().toString();
}
}