(t *testing.T)
| 287 | } |
| 288 | |
| 289 | func TestRecursiveStruct(t *testing.T) { |
| 290 | type Person struct { |
| 291 | Parent *Person |
| 292 | } |
| 293 | m := NewMapperFunc("db", strings.ToLower) |
| 294 | var p *Person |
| 295 | m.TypeMap(reflect.TypeOf(p)) |
| 296 | } |
| 297 | |
| 298 | func TestFieldsEmbedded(t *testing.T) { |
| 299 | m := NewMapper("db") |
nothing calls this directly
no test coverage detected