...

Source file src/github.com/wojas/genericr/caller_test.go

Documentation: github.com/wojas/genericr

     1  package genericr_test
     2  
     3  type infoLogger interface {
     4  	Info(msg string, keysAndValues ...interface{})
     5  }
     6  
     7  // This is indirectly tested by calling this function
     8  func logSomethingFromOtherFile(log infoLogger) {
     9  	log.Info("test caller")
    10  }
    11  

View as plain text