(t *testing.T)
| 63 | } |
| 64 | |
| 65 | func TestRemoveComments(t *testing.T) { |
| 66 | testRemoveComments(t, "r.act == p.act # comments", "r.act == p.act") |
| 67 | testRemoveComments(t, "r.act == p.act#comments", "r.act == p.act") |
| 68 | testRemoveComments(t, "r.act == p.act###", "r.act == p.act") |
| 69 | testRemoveComments(t, "### comments", "") |
| 70 | testRemoveComments(t, "r.act == p.act", "r.act == p.act") |
| 71 | } |
| 72 | |
| 73 | func testArrayEquals(t *testing.T, a []string, b []string, res bool) { |
| 74 | t.Helper() |
nothing calls this directly
no test coverage detected
searching dependent graphs…