(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestValidMailboxName(t *testing.T) { |
| 11 | if !address.ValidMailboxName("caddy.bug") { |
| 12 | t.Error("caddy.bug should be valid mailbox name") |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | func TestValidDomain(t *testing.T) { |
| 17 | for _, c := range []struct { |
nothing calls this directly
no test coverage detected