mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-13 14:18:47 +01:00
14 lines
210 B
Go
14 lines
210 B
Go
package ice
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestStunTurn_LoadEmpty(t *testing.T) {
|
|
var stStunTurn StunTurn
|
|
got := stStunTurn.Load()
|
|
if len(got) != 0 {
|
|
t.Errorf("StunTurn.Load() = %v, want %v", got, nil)
|
|
}
|
|
}
|