test(transport): add unit tests for transport behavior using Testify
SonarQube Scan / SonarQube Trigger (push) Successful in 1m51s

This commit is contained in:
2026-01-22 19:22:35 +07:00
parent 9d03f5507f
commit b0249c45ae
13 changed files with 1346 additions and 26 deletions
+15
View File
@@ -0,0 +1,15 @@
package transport
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTransportInterface(t *testing.T) {
var _ Transport = (*httpServer)(nil)
var _ Transport = (*https)(nil)
var _ Transport = (*tcp)(nil)
assert.True(t, true)
}