using CursorLang.Core.Models;
using CursorLang.Settings.Services;
namespace CursorLang.Settings.Tests.Infrastructure;
///
/// A theme that paints nothing and only remembers the windows attached to it.
///
internal sealed class FakeThemeService : IThemeService
{
public AppTheme CurrentTheme { get; set; } = AppTheme.Light;
internal List Registered { get; } = [];
public void Register(System.Windows.Window window) => Registered.Add(window);
}