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

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


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.collections;
  27 
  28 import org.junit.Before;
  29 import org.junit.Test;
  30 
  31 import java.util.Arrays;
  32 import java.util.Collection;
  33 import java.util.HashMap;
  34 import java.util.Iterator;
  35 import java.util.Map;
  36 
  37 import static javafx.collections.MockMapObserver.Tuple.tup;


  38 import static org.junit.Assert.*;
  39 import org.junit.runner.RunWith;
  40 import org.junit.runners.Parameterized;
  41 
  42 @RunWith(Parameterized.class)
  43 public class UnmodifiableObservableMapTest {
  44 
  45     final Callable<ObservableMap<String, String>> mapFactory;
  46     private ObservableMap<String, String> observableMap;
  47     private ObservableMap<String, String> unmodifiableMap;
  48     private MockMapObserver<String, String> observer;
  49 
  50 
  51     public UnmodifiableObservableMapTest(final Callable<ObservableMap<String, String>> mapFactory) {
  52         this.mapFactory = mapFactory;
  53     }
  54 
  55     @Parameterized.Parameters
  56     public static Collection createParameters() {
  57         Object[][] data = new Object[][] {




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package test.javafx.collections;
  27 
  28 import org.junit.Before;
  29 import org.junit.Test;
  30 
  31 import java.util.Arrays;
  32 import java.util.Collection;
  33 import java.util.HashMap;
  34 import java.util.Iterator;
  35 import java.util.Map;
  36 
  37 import javafx.collections.FXCollections;
  38 import javafx.collections.ObservableMap;
  39 import static test.javafx.collections.MockMapObserver.Tuple.tup;
  40 import static org.junit.Assert.*;
  41 import org.junit.runner.RunWith;
  42 import org.junit.runners.Parameterized;
  43 
  44 @RunWith(Parameterized.class)
  45 public class UnmodifiableObservableMapTest {
  46 
  47     final Callable<ObservableMap<String, String>> mapFactory;
  48     private ObservableMap<String, String> observableMap;
  49     private ObservableMap<String, String> unmodifiableMap;
  50     private MockMapObserver<String, String> observer;
  51 
  52 
  53     public UnmodifiableObservableMapTest(final Callable<ObservableMap<String, String>> mapFactory) {
  54         this.mapFactory = mapFactory;
  55     }
  56 
  57     @Parameterized.Parameters
  58     public static Collection createParameters() {
  59         Object[][] data = new Object[][] {