Searched refs:INT_PROP (Results 1 – 1 of 1) sorted by relevance
71 assertEquals(getIntProp(), INT_PROP.get(this).intValue()); in testIntProperty()73 INT_PROP.set(this, 5); in testIntProperty()74 assertEquals(5, INT_PROP.get(this).intValue()); in testIntProperty()76 INT_PROP.setValue(this, 10); in testIntProperty()77 assertEquals(10, INT_PROP.get(this).intValue()); in testIntProperty()149 private static final IntProperty<PropertyTest> INT_PROP = field in PropertyTest