ssl_test.go 207 B

123456789101112131415
  1. package ssl
  2. import (
  3. "fmt"
  4. "github.com/Jinnrry/pmail/config"
  5. "testing"
  6. )
  7. func TestCheckSSLCrtInfo(t *testing.T) {
  8. config.Init()
  9. got, got1, _, err := CheckSSLCrtInfo()
  10. fmt.Println(got, got1, err)
  11. }