github.com/khulnasoft-lab/khulnasoft@v26.0.1-0.20240328202558-330a6f959fe0+incompatible/internal/testutils/logger.go (about)

     1  package testutils
     2  
     3  import "testing"
     4  
     5  // Logger is used to log non-fatal messages during tests.
     6  type Logger interface {
     7  	Logf(format string, args ...any)
     8  }
     9  
    10  var _ Logger = (*testing.T)(nil)