mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 07:11:08 +00:00
12 lines
207 B
Go
12 lines
207 B
Go
package natpmp
|
|
|
|
import "testing"
|
|
|
|
func TestNatPMP(t *testing.T) {
|
|
client, err := NewClientForDefaultGateway(0)
|
|
if err != nil {
|
|
t.Errorf("NewClientForDefaultGateway() = %v,%v", client, err)
|
|
return
|
|
}
|
|
}
|