Search in sources :

Example 11 with DoubleValueProperty

use of com.android.tools.idea.ui.properties.core.DoubleValueProperty in project android by JetBrains.

the class DoubleExpressionsTest method testGreaterThanExpression.

@Test
public void testGreaterThanExpression() {
    BoolValueProperty result = new BoolValueProperty();
    DoubleValueProperty lhs = new DoubleValueProperty();
    DoubleValueProperty rhs = new DoubleValueProperty();
    BindingsManager bindings = new BindingsManager(INVOKE_IMMEDIATELY_STRATEGY);
    bindings.bind(result, lhs.isGreaterThan(rhs));
    assertThat(result.get()).isFalse();
    lhs.set(10.0);
    assertThat(result.get()).isTrue();
    rhs.set(10.0);
    assertThat(result.get()).isFalse();
}
Also used : DoubleValueProperty(com.android.tools.idea.ui.properties.core.DoubleValueProperty) BindingsManager(com.android.tools.idea.ui.properties.BindingsManager) BoolValueProperty(com.android.tools.idea.ui.properties.core.BoolValueProperty) Test(org.junit.Test)

Aggregations

BindingsManager (com.android.tools.idea.ui.properties.BindingsManager)11 DoubleValueProperty (com.android.tools.idea.ui.properties.core.DoubleValueProperty)11 Test (org.junit.Test)11 BoolValueProperty (com.android.tools.idea.ui.properties.core.BoolValueProperty)10