14 lines
326 B
Rust
14 lines
326 B
Rust
mod append_graph_tests {
|
|
use grapherity::models::AppendGraph;
|
|
|
|
grapherity::graph_topology_test_fixtures!(AppendGraph);
|
|
grapherity::dijkstra_tests!(AppendGraph);
|
|
}
|
|
|
|
mod graph_tests {
|
|
use grapherity::models::Graph;
|
|
|
|
grapherity::graph_topology_test_fixtures!(Graph);
|
|
grapherity::dijkstra_tests!(Graph);
|
|
}
|