using AcDream.App.UI.Layout; using DatReaderWriter; using DatReaderWriter.Options; namespace AcDream.App.Tests.UI.Layout; public sealed class SpellbookRowStyleTests { [Fact] public void InstalledDat_ResolvesPinnedRetailSpellShortcutPrototype() { string datDir = System.Environment.GetEnvironmentVariable("ACDREAM_DAT_DIR") ?? Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.UserProfile), "Documents", "Asheron's Call"); if (!Directory.Exists(datDir)) return; using var dats = new DatCollection(datDir, DatAccessType.Read); SpellbookRowStyle style = Assert.IsType( SpellbookRowStyle.TryLoad(dats)); Assert.Equal(280f, style.Width); Assert.Equal(32f, style.Height); Assert.Equal(0f, style.IconLeft); Assert.Equal(32f, style.IconWidth); Assert.Equal(42f, style.LabelLeft); Assert.Equal(230f, style.LabelWidth); Assert.Equal(0x40000001u, style.FontDid); Assert.Equal(System.Numerics.Vector4.One, style.LabelColor); Assert.Equal(0x06001396u, style.BackgroundSprite); Assert.Equal(0x06001397u, style.SelectedSprite); } }