(t *testing.T)
| 50 | } |
| 51 | |
| 52 | func TestManager_RestoreMissing(t *testing.T) { |
| 53 | m := NewManager(filepath.Join(t.TempDir(), "state.json")) |
| 54 | if err := m.Restore(); err != nil { |
| 55 | t.Errorf("Restore on missing file: %v", err) |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | func TestManager_ApplyEmpty(t *testing.T) { |
| 60 | m := NewManager(filepath.Join(t.TempDir(), "state.json")) |
nothing calls this directly
no test coverage detected