overflow_discovery/service/matcher/ftp/ftps_test.go
crusader 3dd6cb79ca ing
2017-11-21 21:47:55 +09:00

17 lines
301 B
Go

package ftp
import (
"fmt"
"testing"
"git.loafle.net/overflow/overflow_discovery/service/matcher"
)
func TestStartCheckFTPS(t *testing.T) {
info := matcher.NewMatchInfo("192.168.1.202", 80)
isFtps, err := StartCheckFTPS(info)
fmt.Println("Result : ", isFtps)
fmt.Println("Error : ", err)
}