/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.collections4.bidimap; import java.util.Map; import java.util.TreeMap; import junit.framework.Test; import org.apache.commons.collections4.BulkTest; import org.apache.commons.collections4.OrderedBidiMap; import org.apache.commons.collections4.Unmodifiable; /** * JUnit tests. * * @version $Id$ */ public class UnmodifiableOrderedBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractOrderedBidiMapTest<K, V> { public static Test suite() { return BulkTest.makeSuite(UnmodifiableOrderedBidiMapTest.class); } public UnmodifiableOrderedBidiMapTest(final String testName) { super(testName); } @Override public OrderedBidiMap<K, V> makeObject() { return UnmodifiableOrderedBidiMap.unmodifiableOrderedBidiMap(new TreeBidiMap<K, V>()); } @Override public OrderedBidiMap<K, V> makeFullMap() { final OrderedBidiMap<K, V> bidi = new TreeBidiMap<K, V>(); addSampleMappings(bidi); return UnmodifiableOrderedBidiMap.unmodifiableOrderedBidiMap(bidi); } @Override public Map<K, V> makeConfirmedMap() { return new TreeMap<K, V>(); } /** * Override to prevent infinite recursion of tests. */ @Override public String[] ignoredTests() { return new String[] {"UnmodifiableOrderedBidiMapTest.bulkTestInverseMap.bulkTestInverseMap"}; } @Override public boolean isAllowNullKey() { return false; } @Override public boolean isAllowNullValue() { return false; } @Override public boolean isPutAddSupported() { return false; } @Override public boolean isPutChangeSupported() { return false; } @Override public boolean isRemoveSupported() { return false; } //----------------------------------------------------------------------- public void testUnmodifiable() { assertTrue(makeObject() instanceof Unmodifiable); assertTrue(makeFullMap() instanceof Unmodifiable); } public void testDecorateFactory() { final OrderedBidiMap<K, V> map = makeFullMap(); assertSame(map, UnmodifiableOrderedBidiMap.unmodifiableOrderedBidiMap(map)); try { UnmodifiableOrderedBidiMap.unmodifiableOrderedBidiMap(null); fail(); } catch (final NullPointerException ex) {} } }