mirror of
https://github.com/pion/webrtc.git
synced 2026-04-22 15:07:23 +08:00
16 lines
303 B
Go
16 lines
303 B
Go
// SPDX-FileCopyrightText: 2026 The Pion community <https://pion.ly>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package webrtc
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestICECandidatePairString_Nil(t *testing.T) {
|
|
var pair *ICECandidatePair
|
|
assert.Equal(t, "<nil>", pair.String())
|
|
}
|