Package org.robolectric.shadows
Class ShadowSystemProperties
java.lang.Object
org.robolectric.shadows.ShadowSystemProperties
@Implements(value=android.os.SystemProperties.class,
isInAndroidSdk=false)
public class ShadowSystemProperties
extends Object
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected static String
native_get
(String key) protected static String
native_get
(String key, String def) protected static boolean
native_get_boolean
(String key, boolean def) protected static int
native_get_int
(String key, int def) protected static long
native_get_long
(String key, long def) protected static void
native_set
(String key, String val) static void
Overrides the system property for testing.static void
reset()
-
Constructor Details
-
ShadowSystemProperties
public ShadowSystemProperties()
-
-
Method Details
-
native_get
-
native_get
-
native_get_int
-
native_get_long
-
native_get_boolean
-
native_set
-
override
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 inBuild
. -
reset
-