protocol_test.go 187 B

12345678910111213
  1. package edgediscovery
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/assert"
  5. )
  6. func TestProtocolPercentage(t *testing.T) {
  7. _, err := ProtocolPercentage()
  8. assert.NoError(t, err)
  9. }