(c *C)
| 43 | var _ = Suite(&ShardedClientSuite{}) |
| 44 | |
| 45 | func (s *ShardedClientSuite) SetUpTest(c *C) { |
| 46 | s.sm = &MockShardManager{C: c} |
| 47 | s.mc = NewShardedClient(s.sm, NewRawBinaryClient) |
| 48 | } |
| 49 | |
| 50 | func (s *ShardedClientSuite) TestSetSentinels(c *C) { |
| 51 | keys := []string{"key"} |
nothing calls this directly
no test coverage detected