org.mockito.internal.invocation.StubInfoImpl 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.invocation.DescribedInvocation;
import org.mockito.invocation.Location;
import org.mockito.invocation.StubInfo;
import java.io.Serializable;
public class StubInfoImpl implements StubInfo, Serializable {
private static final long serialVersionUID = 2125827349332068867L;
private DescribedInvocation stubbedAt;
public StubInfoImpl(DescribedInvocation stubbedAt) {
this.stubbedAt = stubbedAt;
}
public Location stubbedAt() {
return stubbedAt.getLocation();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy