(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestManager_ApplyEmpty(t *testing.T) { |
| 60 | m := NewManager(filepath.Join(t.TempDir(), "state.json")) |
| 61 | defer m.Close() |
| 62 | if err := m.Apply(ManagerConfig{}); err != nil { |
| 63 | t.Errorf("Apply empty: %v", err) |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | func TestManager_TransparentOnly(t *testing.T) { |
| 68 | backend := startEchoTLS(t, "x.example.com") |
nothing calls this directly
no test coverage detected