Files
new-api/constant/channel_test.go
T

13 lines
238 B
Go

package constant
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetChannelBaseURLIsBoundsSafe(t *testing.T) {
assert.Empty(t, GetChannelBaseURL(ChannelTypeTaskPlugin))
assert.Empty(t, GetChannelBaseURL(9999))
}