(t *testing.T)
| 139 | } |
| 140 | |
| 141 | func TestParseGraph_InvalidGraph(t *testing.T) { |
| 142 | failGraph(t, `this graph is a baddie`) |
| 143 | failGraph(t, `=========,,,,`) |
| 144 | failGraph(t, `#`) |
| 145 | failGraph(t, `\n\n\n\n\n\n`) |
| 146 | failGraph(t, `1`) |
| 147 | failGraph(t, `1,2,3,4,5,6,a`) |
| 148 | failGraph(t, `1,2,3,4,5,6,7,8,9,10,11,12,13,14,15`) |
| 149 | failGraph(t, `,,,,,,,,,,,,,,,,`) |
| 150 | failGraph(t, `a=a`) |
| 151 | } |
nothing calls this directly
no test coverage detected