blob: 971a700680b384707b5490cfc1e3ed1340ee48cc [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;
23import org.onlab.packet.MacAddress;
24
25import com.google.common.testing.EqualsTester;
26
27/**
28 * Unit tests for NiciraEncapEthDstTest class.
29 */
30public class NiciraEncapEthDstTest {
31
32 private final MacAddress mac1 = MacAddress.valueOf("fa:16:3e:da:45:23");
33 private final MacAddress mac2 = MacAddress.valueOf("fa:16:3e:f3:d1:fe");
34
35 /**
36 * Checks the operation of equals() methods.
37 */
38 @Test
39 public void testEquals() {
40 final NiciraEncapEthDst encapEthDst1 = new NiciraEncapEthDst(mac1);
41 final NiciraEncapEthDst sameAsEncapEthDst1 = new NiciraEncapEthDst(mac1);
42 final NiciraEncapEthDst encapEthDst2 = new NiciraEncapEthDst(mac2);
43
44 new EqualsTester().addEqualityGroup(encapEthDst1, sameAsEncapEthDst1).addEqualityGroup(encapEthDst2)
45 .testEquals();
46 }
47
48 /**
49 * Checks the construction of a NiciraEncapEthDstTest object.
50 */
51 @Test
52 public void testConstruction() {
53 final NiciraEncapEthDst encapEthDst1 = new NiciraEncapEthDst(mac1);
54 assertThat(encapEthDst1, is(notNullValue()));
55 assertThat(encapEthDst1.encapEthDst(), is(mac1));
56 }
57}