|
17 | 17 |
|
18 | 18 | package org.apache.hugegraph.computer.suite.unit; |
19 | 19 |
|
| 20 | +import org.apache.hugegraph.computer.algorithm.AlgorithmTestSuite; |
| 21 | +import org.apache.hugegraph.computer.core.allocator.AllocatorTestSuite; |
| 22 | +import org.apache.hugegraph.computer.core.bsp.BspTestSuite; |
| 23 | +import org.apache.hugegraph.computer.core.combiner.CombinerTestSuite; |
| 24 | +import org.apache.hugegraph.computer.core.common.CommonTestSuite; |
| 25 | +import org.apache.hugegraph.computer.core.compute.ComputeTestSuite; |
| 26 | +import org.apache.hugegraph.computer.core.config.ConfigTestSuite; |
| 27 | +import org.apache.hugegraph.computer.core.graph.GraphTestSuite; |
| 28 | +import org.apache.hugegraph.computer.core.input.InputTestSuite; |
| 29 | +import org.apache.hugegraph.computer.core.io.IOTestSuite; |
| 30 | +import org.apache.hugegraph.computer.core.network.NetworkTestSuite; |
| 31 | +import org.apache.hugegraph.computer.core.receiver.ReceiverTestSuite; |
| 32 | +import org.apache.hugegraph.computer.core.sender.SenderTestSuite; |
| 33 | +import org.apache.hugegraph.computer.core.sort.sorter.SorterTestSuite; |
| 34 | +import org.apache.hugegraph.computer.core.sort.sorting.SortingTestSuite; |
| 35 | +import org.apache.hugegraph.computer.core.store.StoreTestSuite; |
| 36 | +import org.apache.hugegraph.computer.core.util.UtilTestSuite; |
20 | 37 | import org.apache.hugegraph.computer.core.worker.WorkerTestSuite; |
| 38 | +import org.apache.hugegraph.computer.dist.ComputerDistTestSuite; |
| 39 | +import org.apache.hugegraph.computer.driver.DriverTestSuite; |
| 40 | +import org.apache.hugegraph.computer.k8s.K8sTestSuite; |
21 | 41 | import org.junit.runner.RunWith; |
22 | 42 | import org.junit.runners.Suite; |
23 | 43 |
|
24 | 44 | @RunWith(Suite.class) |
25 | 45 | @Suite.SuiteClasses({ |
26 | | -// AllocatorTestSuite.class, |
27 | | -// CommonTestSuite.class, |
28 | | -// ConfigTestSuite.class, |
29 | | -// UtilTestSuite.class, |
30 | | -// BspTestSuite.class, |
31 | | -// CombinerTestSuite.class, |
32 | | -// GraphTestSuite.class, |
33 | | -// IOTestSuite.class, |
34 | | -// InputTestSuite.class, |
| 46 | + AllocatorTestSuite.class, |
| 47 | + CommonTestSuite.class, |
| 48 | + ConfigTestSuite.class, |
| 49 | + UtilTestSuite.class, |
| 50 | + BspTestSuite.class, |
| 51 | + CombinerTestSuite.class, |
| 52 | + GraphTestSuite.class, |
| 53 | + IOTestSuite.class, |
| 54 | + InputTestSuite.class, |
35 | 55 | WorkerTestSuite.class, |
36 | | -// NetworkTestSuite.class, |
37 | | -// StoreTestSuite.class, |
38 | | -// SorterTestSuite.class, |
39 | | -// SortingTestSuite.class, |
40 | | -// SenderTestSuite.class, |
41 | | -// ReceiverTestSuite.class, |
42 | | -// ComputeTestSuite.class, |
43 | | -// ComputerDistTestSuite.class, |
44 | | -// DriverTestSuite.class, |
45 | | -// K8sTestSuite.class, |
46 | | -// AlgorithmTestSuite.class, |
| 56 | + NetworkTestSuite.class, |
| 57 | + StoreTestSuite.class, |
| 58 | + SorterTestSuite.class, |
| 59 | + SortingTestSuite.class, |
| 60 | + SenderTestSuite.class, |
| 61 | + ReceiverTestSuite.class, |
| 62 | + ComputeTestSuite.class, |
| 63 | + ComputerDistTestSuite.class, |
| 64 | + DriverTestSuite.class, |
| 65 | + K8sTestSuite.class, |
| 66 | + AlgorithmTestSuite.class, |
47 | 67 | }) |
48 | 68 | public class UnitTestSuite { |
49 | 69 | } |
0 commit comments