overflow_probe/matcher/ftp/ftps_test.go
2017-08-03 19:08:34 +09:00

14 lines
204 B
Go

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)
}