(t *testing.T)
| 118 | } |
| 119 | |
| 120 | func TestComposeWithEmptyGraph(t *testing.T) { |
| 121 | g := &Graph{} |
| 122 | a, c := baseAttrsAndConfig() |
| 123 | |
| 124 | var buf bytes.Buffer |
| 125 | ComposeDot(&buf, g, a, c) |
| 126 | |
| 127 | compareGraphs(t, buf.Bytes(), "compose4.dot") |
| 128 | } |
| 129 | |
| 130 | func TestComposeWithStandardGraphAndURL(t *testing.T) { |
| 131 | g := baseGraph() |
nothing calls this directly
no test coverage detected
searching dependent graphs…