Blame | Last modification | View Log | RSS feed
package com.android.volley.mock;import android.os.SystemClock;import org.robolectric.annotation.Implements;@Implements(value = SystemClock.class, callThroughByDefault = true)public class ShadowSystemClock {public static long elapsedRealtime() {return 0;}}