namespace Terminal.Gui.FileServicesTests; public class NerdFontTests { [Fact] public void TestAllExtensionsMapToKnownGlyphs () { var f = new NerdFonts (); foreach (KeyValuePair k in f.ExtensionToIcon) { Assert.Contains (k.Value, f.Glyphs.Keys); } } [Fact] public void TestAllFilenamesMapToKnownGlyphs () { var f = new NerdFonts (); foreach (KeyValuePair k in f.FilenameToIcon) { Assert.Contains (k.Value, f.Glyphs.Keys); } } }