2 * Copyright 2015 Open Networking Laboratory
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onosproject.vtnrsc.tenantnetwork;
18 import static org.hamcrest.MatcherAssert.assertThat;
19 import static org.hamcrest.Matchers.is;
20 import static org.hamcrest.Matchers.notNullValue;
21 import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
23 import org.junit.Test;
24 import org.onosproject.vtnrsc.TenantNetworkId;
26 import com.google.common.testing.EqualsTester;
29 * Unit tests for TenantNetworkId class.
31 public class TenantNetworkIdTest {
33 final TenantNetworkId networkId1 = TenantNetworkId.networkId("1");
34 final TenantNetworkId sameAsnetworkId1 = TenantNetworkId.networkId("1");
35 final TenantNetworkId networkId2 = TenantNetworkId.networkId("2");
38 * Checks that the TenantNetworkId class is immutable.
41 public void testImmutability() {
42 assertThatClassIsImmutable(TenantNetworkId.class);
46 * Checks the operation of equals() methods.
49 public void testEquals() {
50 new EqualsTester().addEqualityGroup(networkId1, sameAsnetworkId1)
51 .addEqualityGroup(networkId2).testEquals();
55 * Checks the construction of a TenantNetworkId object.
58 public void testConstruction() {
59 final String networkIdValue = "s";
60 final TenantNetworkId networkId = TenantNetworkId.networkId(networkIdValue);
61 assertThat(networkId, is(notNullValue()));
62 assertThat(networkId.networkId(), is(networkIdValue));