(t *testing.T, e error)
| 25 | ) |
| 26 | |
| 27 | func assertNoErr(t *testing.T, e error) { |
| 28 | if e != nil { |
| 29 | t.Error(e) |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func TestAddTemplateFunctions(t *testing.T) { |
| 34 | AddTemplateFunc("t", func() bool { return true }) |
no test coverage detected
searching dependent graphs…