Files
gochat/backend/internal/handler/ws/coverage2_test.go
T

18 lines
357 B
Go

package ws
import (
"testing"
"github.com/ThreeDotsLabs/watermill"
)
func TestWatermillZapAdapter_Debug_Cov2(t *testing.T) {
l := &watermillZapAdapter{}
l.Debug("test", watermill.LogFields{"key": "value"})
}
func TestWatermillZapAdapter_Trace_Cov2(t *testing.T) {
l := &watermillZapAdapter{}
l.Trace("test", watermill.LogFields{"key": "value"})
}