mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-20 11:55:18 +00:00
c49453c519
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/2968
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
|
|
}
|
|
}
|