alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (ForwardingTableTest.java)

This example Java source code file (ForwardingTableTest.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

boolean, collection, exception, forwardingtabletest, forwardingtestcase, integer, map, override, set, string, suppresswarnings, table, util

The ForwardingTableTest.java Java example source code

/*
 * Copyright (C) 2009 The Guava Authors
 *
 * Licensed 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 com.google.common.collect;

import com.google.common.collect.Table.Cell;

import java.util.Collection;
import java.util.Map;
import java.util.Set;

/**
 * Tests {@link ForwardingTable}.
 *
 * @author Gregory Kick
 */
public class ForwardingTableTest extends ForwardingTestCase {

  private Table<String, Integer, Boolean> forward;

  @Override public void setUp() throws Exception {
    super.setUp();
    /*
     * Class parameters must be raw, so we can't create a proxy with generic
     * type arguments. The created proxy only records calls and returns null, so
     * the type is irrelevant at runtime.
     */
    @SuppressWarnings("unchecked")
    final Table<String, Integer, Boolean> table =
        createProxyInstance(Table.class);
    forward = new ForwardingTable<String, Integer, Boolean>() {
      @Override protected Table<String, Integer, Boolean> delegate() {
        return table;
      }
    };
  }

  public void testHashCode() {
    int unused = forward.hashCode();
    assertEquals("[hashCode]", getCalls());
  }

  public void testCellSet() {
    Set<Cell unused = forward.cellSet();
    assertEquals("[cellSet]", getCalls());
  }

  public void testClear() {
    forward.clear();
    assertEquals("[clear]", getCalls());
  }

  public void testColumn() {
    Map<String, Boolean> unused = forward.column(1);
    assertEquals("[column(Object)]", getCalls());
  }

  public void testColumnKeySet() {
    Set<Integer> unused = forward.columnKeySet();
    assertEquals("[columnKeySet]", getCalls());
  }

  public void testColumnMap() {
    Map<Integer, Map unused = forward.columnMap();
    assertEquals("[columnMap]", getCalls());
  }

  public void testContains() {
    boolean unused = forward.contains("blah", 1);
    assertEquals("[contains(Object,Object)]", getCalls());
  }

  public void testContainsColumn() {
    boolean unused = forward.containsColumn(1);
    assertEquals("[containsColumn(Object)]", getCalls());
  }

  public void testContainsRow() {
    boolean unused = forward.containsRow("blah");
    assertEquals("[containsRow(Object)]", getCalls());
  }

  public void testContainsValue() {
    boolean unused = forward.containsValue(false);
    assertEquals("[containsValue(Object)]", getCalls());
  }

  public void testGet() {
    Boolean unused = forward.get("blah", 1);
    assertEquals("[get(Object,Object)]", getCalls());
  }

  public void testIsEmpty() {
    boolean unused = forward.isEmpty();
    assertEquals("[isEmpty]", getCalls());
  }

  public void testPut() {
    forward.put("blah", 1, false);
    assertEquals("[put(Object,Object,Object)]", getCalls());
  }

  public void testPutAll() {
    forward.putAll(HashBasedTable.<String, Integer, Boolean>create());
    assertEquals("[putAll(Table)]", getCalls());
  }

  public void testRemove() {
    forward.remove("blah", 1);
    assertEquals("[remove(Object,Object)]", getCalls());
  }

  public void testRow() {
    Map<Integer, Boolean> unused = forward.row("String");
    assertEquals("[row(Object)]", getCalls());
  }

  public void testRowKeySet() {
    Set<String> unused = forward.rowKeySet();
    assertEquals("[rowKeySet]", getCalls());
  }

  public void testRowMap() {
    Map<String, Map unused = forward.rowMap();
    assertEquals("[rowMap]", getCalls());
  }

  public void testSize() {
    int unused = forward.size();
    assertEquals("[size]", getCalls());
  }

  public void testValues() {
    Collection<Boolean> unused = forward.values();
    assertEquals("[values]", getCalls());
  }

  public void testEqualsObject() {
    boolean unused = forward.equals(null);
    assertEquals("[equals(Object)]", getCalls());
  }

}

Other Java examples (source code examples)

Here is a short list of links related to this Java ForwardingTableTest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.