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