1 package org.robolectric.pluginapi; 2 3 import com.google.common.annotations.Beta; 4 5 /** 6 * Loads the Robolectric native runtime. 7 * 8 * <p>By default, the native runtime shared library is loaded from Java resources. However, in some 9 * environments, there may be a faster and simpler way to load it. 10 */ 11 @Beta 12 public interface NativeRuntimeLoader { ensureLoaded()13 void ensureLoaded(); 14 } 15