1205dfc3361d26337e10a5fe58b201718d9a9d21
[controller.git] / third-party / openflowj / src / test / java / org / openflow / util / U8Test.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.openflow.util;
11
12 import junit.framework.TestCase;
13
14 public class U8Test extends TestCase {
15   /**
16    * Tests that we correctly translate unsigned values in and out of a byte
17    * @throws Exception
18    */
19   public void test() throws Exception {
20       short val = 0xff;
21       TestCase.assertEquals(-1, U8.t(val));
22       TestCase.assertEquals(val, U8.f((byte)-1));
23   }
24 }