(t *testing.T)
| 345 | } |
| 346 | |
| 347 | func TestMemcachedClient_Name(t *testing.T) { |
| 348 | client, _, err := setupDefaultMemcachedClient() |
| 349 | require.NoError(t, err) |
| 350 | require.Equal(t, "test", client.Name()) |
| 351 | } |
| 352 | |
| 353 | func BenchmarkMemcachedClient_sortKeysByServer(b *testing.B) { |
| 354 | mockSelector := &mockServerSelector{ |
nothing calls this directly
no test coverage detected