Skip to content

Instantly share code, notes, and snippets.

View maydin's full-sized avatar

Murat AYDIN maydin

  • Vodafone
  • Berlin
View GitHub Profile
@Aesthetikx
Aesthetikx / retrofit_callback_testing.java
Last active June 24, 2022 16:55
Testing Retrofit Callback style APIs with Robolectric and CountdownLatches
// WidgetApi.java
public interface WidgetApi {
@GET("/widget/{:id}")
void getWidget(@Path("id") int id, Callback<Widget> callback);
}
// MockRetrofitClient.java
public class MockRetrofitClient implements Client {
private int statusCode = 200;