(obj interface{})
| 120 | } |
| 121 | |
| 122 | func testStoreKeyFunc(obj interface{}) (string, error) { |
| 123 | return obj.(testStoreObject).id, nil |
| 124 | } |
| 125 | |
| 126 | func testStoreIndexFunc(obj interface{}) ([]string, error) { |
| 127 | return []string{obj.(testStoreObject).val}, nil |
no outgoing calls
no test coverage detected