commons_go/matcher/ftp/ftps_test.go

14 lines
204 B
Go
Raw Normal View History

2017-04-10 11:14:12 +00:00
package ftp
import (
"fmt"
"testing"
)
func TestStartCheckFTPS(t *testing.T) {
isFtps, err := StartCheckFTPS("192.168.1.202", "80")
fmt.Println("Result : ", isFtps)
fmt.Println("Error : ", err)
}