2020-10-14 10:28:07 +00:00
|
|
|
package edgediscovery
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2021-10-11 10:31:05 +00:00
|
|
|
func TestProtocolPercentage(t *testing.T) {
|
|
|
|
_, err := ProtocolPercentage()
|
2020-10-14 10:28:07 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|