| 23 | func TestBasic(t *testing.T) { |
| 24 | t.Parallel() |
| 25 | type Data struct { |
| 26 | Name string |
| 27 | Friends []string |
| 28 | Ages map[string]int |
| 29 | } |
| 30 | want := Data{ |
| 31 | Name: "Alice", |
| 32 | Friends: []string{"Bob", "Carol", "Dave"}, |
nothing calls this directly
no outgoing calls
no test coverage detected