/** * * Copyright (c) 2006-2017, Speedment, Inc. All Rights Reserved. * * 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. */ /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.speedment.common.tuple.old_tests; import com.speedment.common.tuple.Tuple2; import com.speedment.common.tuple.Tuples; import org.junit.*; import java.util.Arrays; import java.util.Collections; import java.util.List; import static java.util.stream.Collectors.toList; import static org.junit.Assert.assertEquals; /** * * @author pemi */ public class Tuple2Test { protected static final int FIRST = 8; protected static final int SECOND = 16; protected Tuple2<Integer, Integer> instance; public Tuple2Test() { } @BeforeClass public static void setUpClass() { } @AfterClass public static void tearDownClass() { } @Before public void setUp() { instance = Tuples.of(FIRST, SECOND); //instance = new Tuple2<>(FIRST, SECOND); } @After public void tearDown() { } @Test public void testGet0() { assertEquals(FIRST, instance.get0().intValue()); } @Test public void testGet1() { assertEquals(SECOND, instance.get1().intValue()); } @Test public void testGet() { assertEquals(FIRST, instance.get(0)); assertEquals(SECOND, instance.get(1)); } // @Test // public void testSet0() { // System.out.println("set0"); // instance.set1(32); // assertEquals(32, instance.get1().intValue()); // } // // @Test // public void testSet1() { // System.out.println("set1"); // instance.set1(64); // assertEquals(64, instance.get1().intValue()); // } // @Test // public void testDefConstructor() { // System.out.println("Default constructor"); // final Tuple2<Integer, Integer> newInstance = Tuples.of(this, this)new Tuple2<>(); // assertNull(newInstance.get0()); // assertNull(newInstance.get1()); // } @Test public void testHash() { int hashCodeInstance = instance.hashCode(); final Tuple2<Integer, Integer> newInstance = Tuples.of(FIRST, SECOND); int hashCodenewInstance = newInstance.hashCode(); assertEquals(hashCodeInstance, hashCodenewInstance); } @Test public void testEquals() { final Tuple2<Integer, Integer> newInstance = Tuples.of(FIRST, SECOND); assertEquals(instance, newInstance); } @Test public void testToString() { final Tuple2<Integer, Integer> newInstance = Tuples.of(FIRST, SECOND); final String result = newInstance.toString(); } @Test public void testStream() { List<Object> content = instance.stream().collect(toList()); List<Integer> expected = Arrays.asList(FIRST, SECOND); assertEquals(expected, content); } @Test public void testStreamOf() { final Tuple2<Integer, String> newInstance = Tuples.of(FIRST, "Olle"); List<Integer> content = newInstance.streamOf(Integer.class).collect(toList()); List<Integer> expected = Collections.singletonList(FIRST); assertEquals(expected, content); } }