(t *testing.T)
| 49 | } |
| 50 | |
| 51 | func TestLogConcurrent(t *testing.T) { |
| 52 | var wg sync.WaitGroup |
| 53 | for i := 0; i < 2; i++ { |
| 54 | wg.Add(1) |
| 55 | go func() { |
| 56 | TestLog(t) |
| 57 | wg.Done() |
| 58 | }() |
| 59 | } |
| 60 | wg.Wait() |
| 61 | } |
| 62 | |
| 63 | func TestFatal(t *testing.T) { |
| 64 | l := New("test") |
nothing calls this directly
no test coverage detected
searching dependent graphs…