/* * Created on Oct 30, 2010 * * 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. * * Copyright @2010-2013 the original author or authors. */ package org.fest.assertions.data; import static junit.framework.Assert.assertFalse; import static org.fest.assertions.data.Offset.offset; import static org.fest.test.EqualsHashCodeContractAssert.assertEqualsIsReflexive; import static org.fest.test.EqualsHashCodeContractAssert.assertEqualsIsSymmetric; import static org.fest.test.EqualsHashCodeContractAssert.assertEqualsIsTransitive; import static org.fest.test.EqualsHashCodeContractAssert.assertMaintainsEqualsAndHashCodeContract; import org.junit.BeforeClass; import org.junit.Test; /** * Tests for {@link Offset#equals(Object)} and {@link Offset#hashCode()}. * * @author Alex Ruiz * @author Yvonne Wang */ public class Offset_equals_hashCode_Test { private static Offset<Integer> offset; @BeforeClass public static void setUpOnce() { offset = offset(8); } @Test public void should_have_reflexive_equals() { assertEqualsIsReflexive(offset); } @Test public void should_have_symmetric_equals() { assertEqualsIsSymmetric(offset, offset(8)); } @Test public void should_have_transitive_equals() { assertEqualsIsTransitive(offset, offset(8), offset(8)); } @Test public void should_maintain_equals_and_hashCode_contract() { assertMaintainsEqualsAndHashCodeContract(offset, offset(8)); } @Test public void should_not_be_equal_to_Object_of_different_type() { assertFalse(offset.equals("8")); } @Test public void should_not_be_equal_to_null() { assertFalse(offset.equals(null)); } @Test public void should_not_be_equal_to_Offset_with_different_value() { assertFalse(offset.equals(offset(6))); } }