(t *testing.T)
| 524 | } |
| 525 | |
| 526 | func TestBoolConvert(t *testing.T) { |
| 527 | if !reflect.ValueOf(true).Convert(reflect.TypeOf(true)).Bool() { |
| 528 | t.Fail() |
| 529 | } |
| 530 | } |
| 531 | |
| 532 | func TestGoexit(t *testing.T) { |
| 533 | go func() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…