blob: 197e3bf94bc70de01b9199e33a12c8173d1913d3 [file] [log] [blame]
Phaneendra Mandaab5a7362015-12-02 01:10:01 +05301/*
2 * Copyright 2015 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 NiciraSetNshSpi class.
28 */
29public class NiciraSetNshSpiTest {
30
31 final NiciraSetNshSpi nshSpi1 = new NiciraSetNshSpi(10);
32 final NiciraSetNshSpi sameAsNshSpi1 = new NiciraSetNshSpi(10);
33 final NiciraSetNshSpi nshSpi2 = new NiciraSetNshSpi(20);
34
35 /**
36 * Checks the operation of equals() methods.
37 */
38 @Test
39 public void testEquals() {
40 new EqualsTester().addEqualityGroup(nshSpi1, sameAsNshSpi1).addEqualityGroup(nshSpi2).testEquals();
41 }
42
43 /**
44 * Checks the construction of a NiciraSetNshSpi object.
45 */
46 @Test
47 public void testConstruction() {
48 final NiciraSetNshSpi niciraSetNshSpi = new NiciraSetNshSpi(10);
49 assertThat(niciraSetNshSpi, is(notNullValue()));
50 assertThat(niciraSetNshSpi.nshSpi(), is(10));
51 }
52}