Merge "Bug 2347: DOMConcurrentDataCommitCoordinator uses wrong phase name"
[controller.git] / third-party / openflowj / src / test / java / org / openflow / util / U8Test.java
1 package org.openflow.util;
2
3 import junit.framework.TestCase;
4
5 public class U8Test extends TestCase {
6   /**
7    * Tests that we correctly translate unsigned values in and out of a byte
8    * @throws Exception
9    */
10   public void test() throws Exception {
11       short val = 0xff;
12       TestCase.assertEquals(-1, U8.t(val));
13       TestCase.assertEquals(val, U8.f((byte)-1));
14   }
15 }