CREATE_TEST(edge_node_overlap_ellipse_node_shapes_except_point)
CREATE_TEST(edge_node_overlap_normal_and_inv_edge_arrows)
CREATE_TEST(edge_node_overlap_normal_and_inv_edge_arrows_all_modifiers)
+CREATE_TEST(edge_node_overlap_point_node_shape)
CREATE_TEST(edge_node_overlap_polygon_node_shapes)
CREATE_TEST(edge_node_overlap_simple)
CREATE_TEST(max_edge_node_overlap_simple)
--- /dev/null
+#include <iostream>
+#include <string>
+
+#include <catch2/catch.hpp>
+#include <fmt/format.h>
+
+#include "test_edge_node_overlap_utilities.h"
+#include "test_utilities.h"
+
+TEST_CASE("Overlap point node shape",
+ "[!shouldfail] Test that an edge connected to a 'point' shaped node "
+ "touches that node and does not overlap it too much") {
+
+ const auto shape = "point";
+ INFO(fmt::format("Node shape: {}", shape));
+
+ const auto rankdir = GENERATE(from_range(all_rank_directions));
+ INFO(fmt::format("Rank direction: {}", rankdir));
+
+ const graph_options graph_options = {
+ .rankdir = rankdir,
+ .node_shape = shape,
+ .node_penwidth = 2,
+ .edge_penwidth = 2,
+ };
+
+ const auto filename_base = AUTO_NAME();
+
+ test_edge_node_overlap(graph_options, {}, {.filename_base = filename_base});
+}