1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
package webrtc
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestICEGathererState_String(t *testing.T) {
testCases := []struct {
state ICEGathererState
expectedString string
}{
{ICEGathererState(Unknown), unknownStr},
{ICEGathererStateNew, "new"},
{ICEGathererStateGathering, "gathering"},
{ICEGathererStateComplete, "complete"},
{ICEGathererStateClosed, "closed"},
}
for i, testCase := range testCases {
assert.Equal(t,
testCase.expectedString,
testCase.state.String(),
"testCase: %d %v", i, testCase,
)
}
}
|