Back to project page android-test-demo.
The source code is released under:
MIT License
If you think the Android project android-test-demo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.andydyer.androidtestdemo; /*from w w w . jav a 2 s . c o m*/ import org.andydyer.androidtestdemo.api.MockApiServiceModule; /** * Replace Module class in app with a test-specific implementation that returns mock modules instead. */ public class Modules { static Object[] list() { return new Object[] { new MockApiServiceModule() }; } }