(t *testing.T)
| 482 | } |
| 483 | |
| 484 | func TestMapPtrStructNils(t *testing.T) { |
| 485 | v1 := "v1" |
| 486 | v2 := "v2" |
| 487 | testType(t, &TMapPtrStruct{X: map[string]*Xstring{"a": nil, "b": &Xstring{v1}, "c": nil, "d": &Xstring{v2}}}, &XMapPtrStruct{X: map[string]*Xstring{"a": nil, "b": &Xstring{v1}, "c": nil, "d": &Xstring{v2}}}) |
| 488 | } |
| 489 | |
| 490 | func TestTimeDuration(t *testing.T) { |
| 491 | testType(t, &Tduration{}, &Xduration{}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…