Replace VertexMap and EdgeMap with now public EntityMap

This commit is contained in:
2026-07-22 13:30:09 +02:00
parent 8db7a86187
commit d711e68577
11 changed files with 90 additions and 300 deletions
+5 -18
View File
@@ -1,25 +1,12 @@
mod append_graph_vertex_map_tests {
mod append_graph_entity_map_tests {
use grapherity::models::AppendGraph;
grapherity::vertex_map_tests!(AppendGraph);
grapherity::entity_map_tests!(AppendGraph);
}
mod append_graph_edge_map_tests {
use grapherity::models::AppendGraph;
grapherity::edge_map_tests!(AppendGraph);
}
mod graph_vertex_map_tests {
mod graph_entity_map_tests {
use grapherity::models::Graph;
grapherity::vertex_map_tests!(Graph);
grapherity::vertex_map_deletion_tests!(Graph);
}
mod graph_edge_map_tests {
use grapherity::models::Graph;
grapherity::edge_map_tests!(Graph);
grapherity::edge_map_deletion_tests!(Graph);
grapherity::entity_map_tests!(Graph);
grapherity::entity_map_deletion_tests!(Graph);
}