space.go 137 B

123456789
  1. package testing
  2. type Context struct {
  3. CallerTagValue string
  4. }
  5. func (this *Context) CallerTag() string {
  6. return this.CallerTagValue
  7. }