mirror of
https://github.com/Jinnrry/PMail.git
synced 2025-10-05 15:27:14 +08:00
20 lines
299 B
Go
20 lines
299 B
Go
package main
|
|
|
|
import (
|
|
"pmail/config"
|
|
"pmail/dto/parsemail"
|
|
"testing"
|
|
)
|
|
|
|
func testInit() {
|
|
|
|
config.Init()
|
|
|
|
}
|
|
func TestWebPushHook_ReceiveParseAfter(t *testing.T) {
|
|
testInit()
|
|
|
|
w := NewWebPushHook()
|
|
w.ReceiveParseAfter(nil, &parsemail.Email{Subject: "标题", Text: []byte("文本内容")})
|
|
}
|