()
| 1351 | } |
| 1352 | |
| 1353 | func (s *spyDialer) instance() string { |
| 1354 | s.mu.Lock() |
| 1355 | defer s.mu.Unlock() |
| 1356 | i := s.got |
| 1357 | return i |
| 1358 | } |
| 1359 | |
| 1360 | func (*spyDialer) Dial(_ context.Context, _ string, _ ...cloudsqlconn.DialOption) (net.Conn, error) { |
| 1361 | return nil, errors.New("spy dialer does not dial") |
no outgoing calls
no test coverage detected