(t *testing.T)
| 84 | } |
| 85 | |
| 86 | func TestHost_AddFromReader_malformedPatterns(t *testing.T) { |
| 87 | s := ` |
| 88 | ONE \d |
| 89 | TWO %{THREE:two}` |
| 90 | require.Error(t, New().AddFromReader(strings.NewReader(s))) |
| 91 | } |
| 92 | |
| 93 | func TestHost_inject(t *testing.T) { |
| 94 | h := New() |
nothing calls this directly
no test coverage detected