4863357d13344198f2df47bc33d719a24d56a102
[yangtools.git] / common / util / src / test / java / org / opendaylight / yangtools / util / HashCodeBuilderTest.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.util;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13
14 public class HashCodeBuilderTest {
15
16     @Test
17     public void testAllMethodsOfHashCodeBuilder() {
18         final HashCodeBuilder<String> builder = new HashCodeBuilder<>();
19         assertEquals("Default hash code should be '1'.", 1, builder.build().intValue());
20
21         int nextHashCode = HashCodeBuilder.nextHashCode(1, "test");
22         assertEquals("Next hash code should be '3556529'.", 3556529, nextHashCode);
23
24         builder.addArgument("another test");
25         assertEquals("Updated internal hash code should be '700442706'.", -700442706, builder.build().intValue());
26     }
27 }