mirror of
				https://github.com/go-acme/lego.git
				synced 2025-10-31 16:37:41 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			580 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			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")
 | |
| }
 |