Class ShadowSystemProperties

java.lang.Object
org.robolectric.shadows.ShadowSystemProperties

@Implements(value=android.os.SystemProperties.class, isInAndroidSdk=false) public class ShadowSystemProperties extends Object
  • Constructor Details

    • ShadowSystemProperties

      public ShadowSystemProperties()
  • Method Details

    • native_get

      @Implementation protected static String native_get(String key)
    • native_get

      @Implementation protected static String native_get(String key, String def)
    • native_get_int

      @Implementation protected static int native_get_int(String key, int def)
    • native_get_long

      @Implementation protected static long native_get_long(String key, long def)
    • native_get_boolean

      @Implementation protected static boolean native_get_boolean(String key, boolean def)
    • native_set

      @Implementation protected static void native_set(String key, String val)
    • override

      public static void override(String key, String val)
      Overrides the system property for testing. Similar to the Android implementation, the value may be coerced to other types like boolean or long depending on the get method that is used.

      Note: Use ShadowBuild instead for changing fields in Build.

    • reset

      @Resetter public static void reset()