(query string, args ...interface{})
| 306 | } |
| 307 | |
| 308 | func (s *DBStub) Query(query string, args ...interface{}) (*sql.Rows, error) { |
| 309 | s.LastQuerySql = query |
| 310 | s.LastQueryArgs = args |
| 311 | return nil, nil |
| 312 | } |
| 313 | |
| 314 | func (s *DBStub) QueryRow(query string, args ...interface{}) squirrel.RowScanner { |
| 315 | s.LastQueryRowSql = query |
no outgoing calls
no test coverage detected