blob: bce584f08b856e961568ac08277ba34b14058d10 [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.net.behaviour;
import org.junit.Test;
import com.google.common.testing.EqualsTester;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
public class MirroringNameTest {
private static final String NAME1 = "name1";
private MirroringName name1 = MirroringName.mirroringName(NAME1);
private MirroringName sameAsName1 = MirroringName.mirroringName(NAME1);
private static final String NAME2 = "name2";
private MirroringName name2 = MirroringName.mirroringName(NAME2);
@Test
public void testImmutability() {
assertThatClassIsImmutable(MirroringName.class);
}
@Test
public void testConstruction() {
assertThat(name1.name(), is(NAME1));
}
@Test
public void testEquals() {
new EqualsTester()
.addEqualityGroup(name1, sameAsName1)
.addEqualityGroup(name2)
.testEquals();
}
}