(t *testing.T)
| 413 | } |
| 414 | |
| 415 | func (this *MemoryList) Print(t *testing.T) { |
| 416 | this.locker.Lock() |
| 417 | for _, itemMap := range this.itemMaps { |
| 418 | if len(itemMap) > 0 { |
| 419 | logs.PrintAsJSON(itemMap, t) |
| 420 | } |
| 421 | } |
| 422 | this.locker.Unlock() |
| 423 | } |
| 424 | |
| 425 | func (this *MemoryList) prefix(hash string) string { |
| 426 | var prefix string |