| 18 | ) |
| 19 | |
| 20 | type QueryStructure[T any] struct { |
| 21 | queryType string |
| 22 | parameter T |
| 23 | expectedResult interface{} |
| 24 | expectedError error |
| 25 | } |
| 26 | |
| 27 | type TestCaseData[T any] struct { |
| 28 | description string |
nothing calls this directly
no outgoing calls
no test coverage detected