blob: 33eb8920f1879fe97fdb67c47370e2b9ea11cdbc [file] [log] [blame]
Ray Milkey7dac7da2017-08-01 16:56:05 -07001/*
2 * Copyright 2016-present Open Networking Foundation
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 */
16
17package org.onlab;
18
19import org.junit.runner.RunWith;
20import org.junit.runners.Suite;
21import org.onlab.graph.AbstractEdgeTest;
22import org.onlab.graph.AdjacencyListsGraphTest;
23import org.onlab.graph.BellmanFordGraphSearchTest;
24import org.onlab.graph.BreadthFirstSearchTest;
25import org.onlab.graph.DefaultMutablePathTest;
26import org.onlab.graph.DefaultPathTest;
27import org.onlab.graph.DepthFirstSearchTest;
28import org.onlab.graph.DijkstraGraphSearchTest;
29import org.onlab.graph.DisjointPathPairTest;
30import org.onlab.graph.HeapTest;
31import org.onlab.graph.KShortestPathsSearchTest;
32import org.onlab.graph.LazyKShortestPathsSearchTest;
33import org.onlab.graph.SrlgGraphSearchTest;
34import org.onlab.graph.SuurballeGraphSearchTest;
35import org.onlab.graph.TarjanGraphSearchTest;
36import org.onlab.util.ImmutableByteSequenceTest;
37
38@RunWith(Suite.class)
39@Suite.SuiteClasses({
40 AbstractEdgeTest.class,
41 AdjacencyListsGraphTest.class,
42 BellmanFordGraphSearchTest.class,
43 BreadthFirstSearchTest.class,
44 DefaultMutablePathTest.class,
45 DefaultPathTest.class,
46 DepthFirstSearchTest.class,
47 DijkstraGraphSearchTest.class,
48 DisjointPathPairTest.class,
49 HeapTest.class,
50 KShortestPathsSearchTest.class,
51 LazyKShortestPathsSearchTest.class,
52 SrlgGraphSearchTest.class,
53 SuurballeGraphSearchTest.class,
54 TarjanGraphSearchTest.class,
55 ImmutableByteSequenceTest.class,
56})
57
58public class MiscTestSuite {
59
60}