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