modules/base/src/test/java/test/javafx/collections/TestedObservableSets.java

Print this page
rev 9235 : 8134760: Refactor Javafx base module tests for clear separation of tests
Reviewed-by:

*** 21,36 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package javafx.collections; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.TreeSet; import javafx.beans.property.SimpleSetProperty; public interface TestedObservableSets { Callable<ObservableSet<String>> HASH_SET = () -> FXCollections.observableSet(new HashSet<String>()); --- 21,38 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package test.javafx.collections; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.TreeSet; import javafx.beans.property.SimpleSetProperty; + import javafx.collections.FXCollections; + import javafx.collections.ObservableSet; public interface TestedObservableSets { Callable<ObservableSet<String>> HASH_SET = () -> FXCollections.observableSet(new HashSet<String>());