assertEqual will fail if the two strings are not equal
(t testingT, expected, actual string)
| 17 | |
| 18 | // assertEqual will fail if the two strings are not equal |
| 19 | func assertEqual(t testingT, expected, actual string) { |
| 20 | if expected != actual { |
| 21 | t.Logf("Expected: %s Actual: %s", expected, actual) |
| 22 | t.Fail() |
| 23 | } |
| 24 | } |
searching dependent graphs…