(t *testing.T)
| 470 | } |
| 471 | |
| 472 | func TestMapPtrNils(t *testing.T) { |
| 473 | v1 := 3 |
| 474 | v2 := 4 |
| 475 | testType(t, &TMapStringPtr{X: map[string]*int{"a": nil, "b": &v1, "c": nil, "d": &v2}}, &XMapStringPtr{X: map[string]*int{"a": nil, "b": &v1, "c": nil, "d": &v2}}) |
| 476 | } |
| 477 | |
| 478 | func TestSlicePtrStructNils(t *testing.T) { |
| 479 | v1 := "v1" |
nothing calls this directly
no test coverage detected
searching dependent graphs…