Searched refs:DEFAULT_FLOAT (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/deviceconfig/src/android/deviceconfig/cts/ |
D | DeviceConfigApiTests.java | 87 private static final float DEFAULT_FLOAT = 123.456f; field in DeviceConfigApiTests 699 final float result = DeviceConfig.getFloat(NAMESPACE1, KEY1, DEFAULT_FLOAT); in testGetFloat_empty() 701 DEFAULT_FLOAT, result, 0.0); in testGetFloat_empty() 712 final float result = DeviceConfig.getFloat(NAMESPACE1, KEY1, DEFAULT_FLOAT); in testGetFloat_valid() 724 final float result = DeviceConfig.getFloat(NAMESPACE1, KEY1, DEFAULT_FLOAT); in testGetFloat_invalid() 727 + " getProperty() when property is not null", DEFAULT_FLOAT, result, 0.0f); in testGetFloat_invalid() 736 DeviceConfig.getFloat(null, KEY1, DEFAULT_FLOAT); in testGetFloat_nullNamespace() 750 DeviceConfig.getFloat(NAMESPACE1, null, DEFAULT_FLOAT); in testGetFloat_nullName() 957 final float result = properties.getFloat(KEY1, DEFAULT_FLOAT); in testGetPropertiesFloat_empty() 959 + "null", DEFAULT_FLOAT, result, 0.0f); in testGetPropertiesFloat_empty() [all …]
|