blob: b4b38f8d199f3c79859edc9b89bb1b95b67956dc [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 NiciraMatchEncapEthType class.
28 */
29public class NiciraMatchEncapEthTypeTest {
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 NiciraMatchEncapEthType encapEthType1 = new NiciraMatchEncapEthType(ethType1);
39 final NiciraMatchEncapEthType sameAsEncapEthType1 = new NiciraMatchEncapEthType(ethType1);
40 final NiciraMatchEncapEthType encapEthType2 = new NiciraMatchEncapEthType(ethType2);
41
42 new EqualsTester().addEqualityGroup(encapEthType1, sameAsEncapEthType1).addEqualityGroup(encapEthType2)
43 .testEquals();
44 }
45
46 /**
47 * Checks the construction of a NiciraMatchEncapEthType object.
48 */
49 @Test
50 public void testConstruction() {
51 final NiciraMatchEncapEthType encapEthType = new NiciraMatchEncapEthType(ethType1);
52 assertThat(encapEthType, is(notNullValue()));
53 assertThat(encapEthType.encapEthType(), is(ethType1));
54 }
55}