mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-08 23:12:54 +01:00
Added test for Msg.GetGenHeader
This commit is contained in:
parent
cd2ee86846
commit
da130c0222
1 changed files with 17 additions and 0 deletions
17
msg_test.go
17
msg_test.go
|
@ -2105,3 +2105,20 @@ func TestMsg_WriteToFile(t *testing.T) {
|
|||
t.Errorf("output file is expected to contain data but its size is zero")
|
||||
}
|
||||
}
|
||||
|
||||
// TestMsg_GetGenHeader will test the GetGenHeader method of the Msg
|
||||
func TestMsg_GetGenHeader(t *testing.T) {
|
||||
m := NewMsg()
|
||||
m.Subject("this is a test")
|
||||
sa := m.GetGenHeader(HeaderSubject)
|
||||
if len(sa) <= 0 {
|
||||
t.Errorf("GetGenHeader on subject failed. Got empty slice")
|
||||
return
|
||||
}
|
||||
if sa[0] == "" {
|
||||
t.Errorf("GetGenHeader on subject failed. Got empty value")
|
||||
}
|
||||
if sa[0] != "this is a test" {
|
||||
t.Errorf("GetGenHeader on subject failed. Expected: %q, got: %q", "this is a test", sa[0])
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue