2015-12-10 23:55:39 +01:00

10 lines
137 B
Go

package testing
type Context struct {
CallerTagValue string
}
func (this *Context) CallerTag() string {
return this.CallerTagValue
}