public void Graph_DescribeVertices_ReturnsExpectedDescriptions_ForDirectedGraphs([NotNull] string relationships, string expected) { var graph = new LiteralGraph(relationships, true); var result = string.Join("; ", graph.DescribeVertices()); Assert.AreEqual(expected, result); }