(t *testing.T)
| 143 | } |
| 144 | |
| 145 | func TestGraphValidateColorsOfVertex_Negative(t *testing.T) { |
| 146 | for i, tt := range getTestGraphsForNegativeTests() { |
| 147 | t.Run(strconv.Itoa(i), func(t *testing.T) { |
| 148 | if err := tt.Graph.ValidateColorsOfVertex(tt.VertexColors); err == nil { |
| 149 | t.Errorf("ValidateColorsOfVertex() error = nil, want some err") |
| 150 | } |
| 151 | }) |
| 152 | } |
| 153 | } |
nothing calls this directly
no test coverage detected