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

xoofx / CppAst.NET / 14782910566

01 May 2025 08:25PM UTC coverage: 78.46% (-0.1%) from 78.596%
14782910566

push

github

xoofx
Add CppInclusionDirective

1147 of 1868 branches covered (61.4%)

Branch coverage included in aggregate %.

11 of 12 new or added lines in 4 files covered. (91.67%)

238 existing lines in 4 files now uncovered.

4965 of 5922 relevant lines covered (83.84%)

2224.93 hits per line

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

0.0
/src/CppAst/CppInclusionDirective.cs
1
// Copyright (c) Alexandre Mutel. All rights reserved.
2
// Licensed under the BSD-Clause 2 license.
3
// See license.txt file in the project root for full license information.
4

5
namespace CppAst;
6

7
/// <summary>
8
/// Represents a header inclusion directive.
9
/// </summary>
10
public class CppInclusionDirective : CppElement
11
{
12
    /// <summary>
13
    /// Gets or sets the file name being included.
14
    /// </summary>
15
    public string FileName { get; set; }
16

17
    /// <inheritdoc />
NEW
18
    public override string ToString() => FileName ?? "<empty>";
×
19
}
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