BUG-2825: simplify test clarity
[mdsal.git] / model / ietf / ietf-type-util / src / test / java / org / opendaylight / mdsal / model / ietf / util / Ipv6UtilsTest.java
1 /*
2  * Copyright (c) 2014 Brocade Communications 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.mdsal.model.ietf.util;
9
10 import com.google.common.net.InetAddresses;
11 import org.junit.Assert;
12 import org.junit.Test;
13
14 /**
15  * @author Anton Ivanov aivanov@brocade.com
16  */
17 public class Ipv6UtilsTest {
18     @Test
19     public void testFullQuads() {
20         byte [] ipv6binary = Ipv6Utils.canonicalBinaryV6Address("0000:0000:0000:0000:0000:0000:0000:0001");
21         Assert.assertArrayEquals(InetAddresses.forString("::1").getAddress(), ipv6binary);
22     }
23 }