All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.lestard.assertj.javafx.api.IntegerPropertyAssert Maven / Gradle / Ivy

The newest version!
package eu.lestard.assertj.javafx.api;

import eu.lestard.assertj.javafx.internal.ObservableValueAssertions;
import eu.lestard.assertj.javafx.internal.PropertyAssertions;
import javafx.beans.property.IntegerProperty;
import javafx.beans.value.ObservableNumberValue;
import org.assertj.core.api.AbstractAssert;

/**
 * Assertion methods for {@link IntegerProperty}s.
 *
 * 

To create an instance of this class, invoke * {@link eu.lestard.assertj.javafx.api.Assertions#assertThat(IntegerProperty)}. *

* * @author manuel mauky */ public class IntegerPropertyAssert extends AbstractAssert { protected IntegerPropertyAssert(IntegerProperty actual) { super(actual, IntegerPropertyAssert.class); } /** * Verifies that the actual observable has the expected value set. * * @param expectedValue the value to compare to the actual observables current value. * @return {@code this} assertion instance. */ public IntegerPropertyAssert hasValue(int expectedValue) { new ObservableValueAssertions<>(actual).hasValue(expectedValue); return this; } /** * Verifies that the actual observable is bound by another observable. * * @return {@code this} assertion instance. */ public IntegerPropertyAssert isBound() { new PropertyAssertions(actual).isBound(); return this; } /** * Verifies that the actual observable has the same value as the given observable. * * @param expectedValue the observable value to compare with the actual observables current value. * * @return {@code this} assertion instance. */ public IntegerPropertyAssert hasSameValue(ObservableNumberValue expectedValue) { new ObservableValueAssertions<>(actual).hasSameValue(expectedValue); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy