1 /* 2 * Copyright (C) 2010 The Guava Authors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.google.common.collect.testing; 18 19 import com.google.common.annotations.GwtIncompatible; 20 import com.google.common.testing.SerializableTester; 21 import java.util.NavigableMap; 22 import java.util.SortedMap; 23 24 @GwtIncompatible // SerializableTester 25 public class ReserializedSafeTreeMapMapInterfaceTest 26 extends SortedMapInterfaceTest<String, Integer> { ReserializedSafeTreeMapMapInterfaceTest()27 public ReserializedSafeTreeMapMapInterfaceTest() { 28 super(false, true, true, true, true); 29 } 30 31 @Override makePopulatedMap()32 protected SortedMap<String, Integer> makePopulatedMap() { 33 NavigableMap<String, Integer> map = new SafeTreeMap<>(); 34 map.put("one", 1); 35 map.put("two", 2); 36 map.put("three", 3); 37 return SerializableTester.reserialize(map); 38 } 39 40 @Override makeEmptyMap()41 protected SortedMap<String, Integer> makeEmptyMap() throws UnsupportedOperationException { 42 NavigableMap<String, Integer> map = new SafeTreeMap<>(); 43 return SerializableTester.reserialize(map); 44 } 45 46 @Override getKeyNotInPopulatedMap()47 protected String getKeyNotInPopulatedMap() { 48 return "minus one"; 49 } 50 51 @Override getValueNotInPopulatedMap()52 protected Integer getValueNotInPopulatedMap() { 53 return -1; 54 } 55 } 56