Searched refs:FLOAT_PROP (Results 1 – 1 of 1) sorted by relevance
59 assertEquals(getFloatProp(), FLOAT_PROP.get(this), 0f); in testFloatProperty()61 FLOAT_PROP.set(this, 5f); in testFloatProperty()62 assertEquals(5f, FLOAT_PROP.get(this), 0f); in testFloatProperty()64 FLOAT_PROP.setValue(this, 10); in testFloatProperty()65 assertEquals(10f, FLOAT_PROP.get(this), 0f); in testFloatProperty()135 private static final FloatProperty<PropertyTest> FLOAT_PROP = field in PropertyTest