summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/utils/misc/src/test/java/org/onlab/graph/DisjointPathPairTest.java
diff options
context:
space:
mode:
authorCNlucius <lukai1@huawei.com>2016-09-13 11:40:12 +0800
committerCNlucius <lukai1@huawei.com>2016-09-13 11:41:53 +0800
commitb731e2f1dd0972409b136aebc7b463dd72c9cfad (patch)
tree5107d7d80c19ad8076c2c97c2b5ef8d1cf3ab903 /framework/src/onos/utils/misc/src/test/java/org/onlab/graph/DisjointPathPairTest.java
parentee93993458266114c29271a481ef9ce7ce621b2a (diff)
ONOSFW-171
O/S-SFC-ONOS scenario documentation Change-Id: I51ae1cf736ea24ab6680f8edca1b2bf5dd598365 Signed-off-by: CNlucius <lukai1@huawei.com>
Diffstat (limited to 'framework/src/onos/utils/misc/src/test/java/org/onlab/graph/DisjointPathPairTest.java')
-rw-r--r--framework/src/onos/utils/misc/src/test/java/org/onlab/graph/DisjointPathPairTest.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/framework/src/onos/utils/misc/src/test/java/org/onlab/graph/DisjointPathPairTest.java b/framework/src/onos/utils/misc/src/test/java/org/onlab/graph/DisjointPathPairTest.java
deleted file mode 100644
index ca6c56c4..00000000
--- a/framework/src/onos/utils/misc/src/test/java/org/onlab/graph/DisjointPathPairTest.java
+++ /dev/null
@@ -1,43 +0,0 @@
-package org.onlab.graph;
-
-import static org.junit.Assert.*;
-
-import org.junit.Test;
-
-import com.google.common.collect.ImmutableList;
-import com.google.common.testing.EqualsTester;
-
-/**
- * Test of DisjointPathPair.
- */
-public class DisjointPathPairTest {
-
- private static final TestVertex A = new TestVertex("A");
- private static final TestVertex B = new TestVertex("B");
- private static final TestVertex C = new TestVertex("C");
- private static final TestVertex D = new TestVertex("D");
-
- private static final TestEdge AB = new TestEdge(A, B, 1.0);
- private static final TestEdge BC = new TestEdge(B, C, 1.0);
- private static final TestEdge AD = new TestEdge(A, D, 1.0);
- private static final TestEdge DC = new TestEdge(D, C, 1.0);
-
- private static final Path<TestVertex, TestEdge> ABC
- = new DefaultPath<>(ImmutableList.of(AB, BC), 1.0);
- private static final Path<TestVertex, TestEdge> ADC
- = new DefaultPath<>(ImmutableList.of(AD, DC), 1.0);
-
- @Test
- public void testSwappingPrimarySecondaryDoesntImpactHashCode() {
- assertEquals(new DisjointPathPair<>(ABC, ADC).hashCode(),
- new DisjointPathPair<>(ADC, ABC).hashCode());
- }
-
- @Test
- public void testSwappingPrimarySecondaryDoesntImpactEquality() {
- new EqualsTester()
- .addEqualityGroup(new DisjointPathPair<>(ABC, ADC),
- new DisjointPathPair<>(ADC, ABC));
- }
-
-}