blob: 311c81c817983177e5e0f68239e093cb18404e85 [file] [log] [blame]
Phaneendra Manda8db7d092016-06-04 00:17:24 +05301/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.driver.extensions;
17
18import static org.hamcrest.MatcherAssert.assertThat;
19import static org.hamcrest.Matchers.is;
20import static org.hamcrest.Matchers.notNullValue;
21
22import org.junit.Test;
23
24import com.google.common.testing.EqualsTester;
25
26/**
27 * Unit tests for NiciraEncapEthType class.
28 */
29public class NiciraEncapEthTypeTest {
30 final short ethType1 = (short) 0x894f;
31 final short ethType2 = (short) 0x800;
32
33 /**
34 * Checks the operation of equals() methods.
35 */
36 @Test
37 public void testEquals() {
38 final NiciraEncapEthType encapEthType1 = new NiciraEncapEthType(ethType1);
39 final NiciraEncapEthType sameAsEncapEthType1 = new NiciraEncapEthType(ethType1);
40 final NiciraEncapEthType encapEthType2 = new NiciraEncapEthType(ethType2);
41
42 new EqualsTester().addEqualityGroup(encapEthType1, sameAsEncapEthType1).addEqualityGroup(encapEthType2)
43 .testEquals();
44 }
45
46 /**
47 * Checks the construction of a NiciraEncapEthType object.
48 */
49 @Test
50 public void testConstruction() {
51 final NiciraEncapEthType encapEthType = new NiciraEncapEthType(ethType1);
52 assertThat(encapEthType, is(notNullValue()));
53 assertThat(encapEthType.encapEthType(), is(ethType1));
54 }
55}