1 /* 2 * Copyright (C) 2015 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 java.util.List; 21 22 /** 23 * Creates, based on your criteria, a JUnit test suite that exhaustively tests a 24 * ConcurrentNavigableMap implementation. 25 * 26 * @author Louis Wasserman 27 */ 28 @GwtIncompatible 29 public class ConcurrentNavigableMapTestSuiteBuilder<K, V> 30 extends NavigableMapTestSuiteBuilder<K, V> { 31 using( TestSortedMapGenerator<K, V> generator)32 public static <K, V> ConcurrentNavigableMapTestSuiteBuilder<K, V> using( 33 TestSortedMapGenerator<K, V> generator) { 34 ConcurrentNavigableMapTestSuiteBuilder<K, V> result = 35 new ConcurrentNavigableMapTestSuiteBuilder<>(); 36 result.usingGenerator(generator); 37 return result; 38 } 39 40 @Override getTesters()41 protected List<Class<? extends AbstractTester>> getTesters() { 42 List<Class<? extends AbstractTester>> testers = Helpers.copyToList(super.getTesters()); 43 testers.addAll(ConcurrentMapTestSuiteBuilder.TESTERS); 44 return testers; 45 } 46 47 @Override subSuiteUsing(TestSortedMapGenerator<K, V> generator)48 NavigableMapTestSuiteBuilder<K, V> subSuiteUsing(TestSortedMapGenerator<K, V> generator) { 49 return using(generator); 50 } 51 } 52