• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MorganKryze / ConsoleAppVisuals / 8158191062

05 Mar 2024 02:47PM UTC coverage: 86.165% (+0.9%) from 85.231%
8158191062

push

github

MorganKryze
📖 (readme) update roadmap

931 of 1144 branches covered (81.38%)

Branch coverage included in aggregate %.

1803 of 2029 relevant lines covered (88.86%)

412.64 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/ConsoleAppVisuals/models/FontYamlFile.cs
1
/*
2
    GNU GPL License 2024 MorganKryze(Yann Vidamment)
3
    For full license information, please visit: https://github.com/MorganKryze/ConsoleAppVisuals/blob/main/LICENSE
4
*/
5
namespace ConsoleAppVisuals.Models;
6

7
/// <summary>
8
/// The <see cref="FontYamlFile"/> class defines the structure of a yaml file used to store the height of each character of a font.
9
/// </summary>
10
/// <remarks>
11
/// For more information, refer to the following resources:
12
/// <list type="bullet">
13
/// <item><description><a href="https://morgankryze.github.io/ConsoleAppVisuals/">Documentation</a></description></item>
14
/// <item><description><a href="https://github.com/MorganKryze/ConsoleAppVisuals/blob/main/example/">Example Project</a></description></item>
15
/// </list>
16
/// </remarks>
17
public class FontYamlFile
18
{
19
    /// <summary>
20
    /// The name of the font.
21
    /// </summary>
22
    [YamlMember(Alias = "name", ApplyNamingConventions = false)]
23
    public string? Name { get; set; }
198✔
24

25
    /// <summary>
26
    /// The author of the font.
27
    /// </summary>
28
    [YamlMember(Alias = "author", ApplyNamingConventions = false)]
29
    public string? Author { get; set; }
276✔
30

31
    /// <summary>
32
    /// The height of each font element.
33
    /// </summary>
34
    [YamlMember(Alias = "height", ApplyNamingConventions = false)]
35
    public int? Height { get; set; }
39,408✔
36

37
    /// <summary>
38
    /// The height of the elements of the font.
39
    /// </summary>
40
    public Dictionary<string, string>? Chars { get; set; }
676✔
41
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc