mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 07:26:39 -04:00
7fd45cf17f
- To debug issue #998 - Enable with `LOG_LEVEL=debug`
24 lines
394 B
Go
24 lines
394 B
Go
package wireguard
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
)
|
|
|
|
func Test_makeDeviceLogger(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
ctrl := gomock.NewController(t)
|
|
|
|
logger := NewMockLogger(ctrl)
|
|
|
|
deviceLogger := makeDeviceLogger(logger)
|
|
|
|
logger.EXPECT().Debugf("test %d", 1)
|
|
deviceLogger.Verbosef("test %d", 1)
|
|
|
|
logger.EXPECT().Errorf("test %d", 2)
|
|
deviceLogger.Errorf("test %d", 2)
|
|
}
|