(t *testing.T)
| 50 | } |
| 51 | |
| 52 | func TestSelectFullGraphNodesSmallIncludesAll(t *testing.T) { |
| 53 | g := dotSampleGraph() |
| 54 | if got := len(selectFullGraphNodes(g)); got != 3 { |
| 55 | t.Fatalf("small graph should include all 3 nodes, got %d", got) |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | func TestKindColorDistinct(t *testing.T) { |
| 60 | kinds := []knowledge.Kind{ |
nothing calls this directly
no test coverage detected