org.robolectric.shadows.httpclient.StatusLineStub Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shadows-httpclient Show documentation
Show all versions of shadows-httpclient Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows.httpclient;
import org.apache.http.ProtocolVersion;
import org.apache.http.StatusLine;
public class StatusLineStub implements StatusLine {
@Override
public ProtocolVersion getProtocolVersion() {
throw new UnsupportedOperationException();
}
@Override
public int getStatusCode() {
throw new UnsupportedOperationException();
}
@Override
public String getReasonPhrase() {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy