ports/portscan_test.go
2022-06-20 16:07:41 -04:00

26 lines
320 B
Go

package main
import (
"net"
"testing"
)
func TestConnection(t *testing.T) {
t.Run("Test Connection", func(t *testing.T) {
})
}
func TestScanIp(t *testing.T) {
t.Run("Test Scan IP", func(t *testing.T) {
})
}
type MockConn struct {
net.Conn
}
func (m *MockConn) Read(b []byte) (int, error) {
return 0, nil
}