(t *testing.T)
| 150 | } |
| 151 | |
| 152 | func TestDrain_Train_EmptyString(t *testing.T) { |
| 153 | t.Parallel() |
| 154 | |
| 155 | drain := New("test-tenant", DefaultConfig()) |
| 156 | |
| 157 | // Empty string should return nil |
| 158 | cluster := drain.Train("") |
| 159 | require.Nil(t, cluster, "should return nil for empty string") |
| 160 | } |
| 161 | |
| 162 | func TestDrain_Train_CacheEvictionIntegration(t *testing.T) { |
| 163 | t.Parallel() |
nothing calls this directly
no test coverage detected