(query string, args ...interface{})
| 312 | } |
| 313 | |
| 314 | func (s *DBStub) QueryRow(query string, args ...interface{}) squirrel.RowScanner { |
| 315 | s.LastQueryRowSql = query |
| 316 | s.LastQueryRowArgs = args |
| 317 | return &squirrel.Row{RowScanner: &RowStub{}} |
| 318 | } |
| 319 | |
| 320 | func (s *DBStub) Begin() (*sql.Tx, error) { |
| 321 | return nil, nil |
no outgoing calls
no test coverage detected