| 10 | ) |
| 11 | |
| 12 | type DBStub struct { |
| 13 | err error |
| 14 | |
| 15 | LastPrepareSql string |
| 16 | PrepareCount int |
| 17 | |
| 18 | LastExecSql string |
| 19 | LastExecArgs []interface{} |
| 20 | |
| 21 | LastQuerySql string |
| 22 | LastQueryArgs []interface{} |
| 23 | |
| 24 | LastQueryRowSql string |
| 25 | LastQueryRowArgs []interface{} |
| 26 | } |
| 27 | |
| 28 | var StubError = fmt.Errorf("this is a stub; this is only a stub") |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected