Merge "Updated registration of Binding Aware notification listeners."
[controller.git] / third-party / openflowj / src / test / java / org / openflow / util / U32Test.java
1 package org.openflow.util;
2
3 import junit.framework.TestCase;
4
5 public class U32Test extends TestCase {
6   /**
7    * Tests that we correctly translate unsigned values in and out of an int
8    * @throws Exception
9    */
10   public void test() throws Exception {
11       long val = 0xffffffffL;
12       TestCase.assertEquals(-1, U32.t(val));
13       TestCase.assertEquals(val, U32.f(-1));
14   }
15 }