Go-Back-Skeleton/vendor/github.com/vanng822/go-premailer/premailer/main_test.go
2017-09-25 20:20:52 +02:00

16 lines
219 B
Go

package premailer
import (
"fmt"
"os"
"testing"
)
func TestMain(m *testing.M) {
fmt.Println("Test starting")
args := os.Args[:]
retCode := m.Run()
os.Args = args
fmt.Println("Test ending")
os.Exit(retCode)
}