11d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert/*
21d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Copyright (C) 2010 The Guava Authors
31d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
41d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Licensed under the Apache License, Version 2.0 (the "License");
51d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * you may not use this file except in compliance with the License.
61d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * You may obtain a copy of the License at
71d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
81d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * http://www.apache.org/licenses/LICENSE-2.0
91d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
101d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Unless required by applicable law or agreed to in writing, software
111d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * distributed under the License is distributed on an "AS IS" BASIS,
121d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
131d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * See the License for the specific language governing permissions and
141d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * limitations under the License.
151d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert */
161d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
171d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringertpackage com.google.common.collect;
181d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
191d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert/**
201d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Unit test for {@link ForwardingSortedSetMultimap}.
211d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
221d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * @author Kurt Alfred Kluever
231d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert */
241d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringertpublic class ForwardingSortedSetMultimapTest extends ForwardingSetMultimapTest {
251d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
261d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert  @Override public void setUp() throws Exception {
271d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert    super.setUp();
281d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert    /*
291d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert     * Class parameters must be raw, so we can't create a proxy with generic
301d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert     * type arguments. The created proxy only records calls and returns null, so
311d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert     * the type is irrelevant at runtime.
321d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert     */
331d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert    @SuppressWarnings("unchecked")
341d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert    final SortedSetMultimap<String, Boolean> multimap =
351d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert        createProxyInstance(SortedSetMultimap.class);
361d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert    forward = new ForwardingSortedSetMultimap<String, Boolean>() {
371d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert      @Override protected SortedSetMultimap<String, Boolean> delegate() {
381d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert        return multimap;
391d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert      }
401d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert    };
411d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert  }
421d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert}
43