1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-05 03:58:54 +02:00
lego/providers/dns/exec/log_mock_test.go
2019-03-11 17:56:48 +01:00

32 lines
580 B
Go

package exec
import "github.com/stretchr/testify/mock"
type LogRecorder struct {
mock.Mock
}
func (*LogRecorder) Fatal(args ...interface{}) {
panic("implement me")
}
func (*LogRecorder) Fatalln(args ...interface{}) {
panic("implement me")
}
func (*LogRecorder) Fatalf(format string, args ...interface{}) {
panic("implement me")
}
func (*LogRecorder) Print(args ...interface{}) {
panic("implement me")
}
func (l *LogRecorder) Println(args ...interface{}) {
l.Called(args...)
}
func (*LogRecorder) Printf(format string, args ...interface{}) {
panic("implement me")
}