< Summary

Information
Class: DirectSight.Reporting.GitInformation
Assembly DirectSight
File(s): /home/runner/work/DirectSight/DirectSight/DirectSight/Reporting/GitInformation.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 22
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

File(s)

/home/runner/work/DirectSight/DirectSight/DirectSight/Reporting/GitInformation.cs

#LineLine coverage
 1namespace DirectSight.Reporting;
 2
 3/// <summary>
 4/// Represents the Git information.
 5/// </summary>
 6internal class GitInformation
 7{
 8    /// <summary>
 9    /// Gets or sets the branch.
 10    /// </summary>
 011    public string Branch { get; set; }
 12
 13    /// <summary>
 14    /// Gets or sets the sha hash.
 15    /// </summary>
 016    public string Sha { get; set; }
 17
 18    /// <summary>
 19    /// Gets or sets the timestamp.
 20    /// </summary>
 021    public string TimeStamp { get; set; }
 22}

Methods/Properties

Branch()
Sha()
TimeStamp()