(c *C)
| 67 | var _ = Suite(&RawBinaryClientSuite{}) |
| 68 | |
| 69 | func (s *RawBinaryClientSuite) SetUpTest(c *C) { |
| 70 | s.rw = newMockReadWriter() |
| 71 | s.client = NewRawBinaryClient(0, s.rw).(*RawBinaryClient) |
| 72 | } |
| 73 | |
| 74 | func (s *RawBinaryClientSuite) verifyRequestMessage(c *C, code opCode) { |
| 75 | /* |
nothing calls this directly
no test coverage detected