(t *testing.T)
| 903 | } |
| 904 | } |
| 905 | func TestIssue20(t *testing.T) { |
| 906 | json := `{ "name": "FirstName", "name1": "FirstName1", ` + |
| 907 | `"address": "address1", "addressDetails": "address2", }` |
| 908 | paths := []string{"name", "name1", "address", "addressDetails"} |
| 909 | expected := []string{"FirstName", "FirstName1", "address1", "address2"} |
| 910 | t.Run("SingleMany", func(t *testing.T) { |
| 911 | testMany(t, json, paths, |
| 912 | expected) |
| 913 | }) |
| 914 | } |
| 915 | |
| 916 | func TestIssue21(t *testing.T) { |
| 917 | json := `{ "Level1Field1":3, |
nothing calls this directly
no test coverage detected
searching dependent graphs…