cloudflare/cloudflared

Public

mirrored from https://github.com/cloudflare/cloudflaredAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
794635fb54fd2c0c95295cbdaffa397ba2c3e8ff

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

edgediscovery/protocol_test.go

12lines · modecode

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