(want pgproto3.FrontendMessage, any bool)
| 85 | } |
| 86 | |
| 87 | func expectMessage(want pgproto3.FrontendMessage, any bool) Step { |
| 88 | if want, ok := want.(*pgproto3.StartupMessage); ok { |
| 89 | return &expectStartupMessageStep{want: want, any: any} |
| 90 | } |
| 91 | |
| 92 | return &expectMessageStep{want: want, any: any} |
| 93 | } |
| 94 | |
| 95 | type sendMessageStep struct { |
| 96 | msg pgproto3.BackendMessage |
no outgoing calls
no test coverage detected