Fix checkstyle warnings in netconf-cli
[controller.git] / third-party / openflowj / src / test / java / org / openflow / protocol / queue / OFQueuePropertyTypeTest.java
1 package org.openflow.protocol.queue;
2
3
4 import junit.framework.TestCase;
5
6 import org.junit.Test;
7
8
9 public class OFQueuePropertyTypeTest extends TestCase {
10     @Test
11     public void testMapping() throws Exception {
12         TestCase.assertEquals(OFQueuePropertyType.NONE,
13                 OFQueuePropertyType.valueOf((short) 0));
14         TestCase.assertEquals(OFQueuePropertyType.MIN_RATE,
15                 OFQueuePropertyType.valueOf((short) 1));
16     }
17 }