Skip to content

Commit

Permalink
Exclude from code coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayKMehta committed Feb 24, 2025
1 parent 3ff0082 commit 84d86f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/BuilderGenerator/EquatableArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;

namespace BuilderGenerator;

/// <summary>
/// An immutable, equatable array. This is equivalent to <see cref="Array"/> but with value equality support.
/// </summary>
/// <typeparam name="T">The type of values in the array.</typeparam>
[ExcludeFromCodeCoverage]
public readonly struct EquatableArray<T> : IEquatable<EquatableArray<T>>, IEnumerable<T>
where T : IEquatable<T>
{
Expand Down
3 changes: 3 additions & 0 deletions src/BuilderGenerator/PropertyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
using System.Diagnostics.CodeAnalysis;

namespace BuilderGenerator;

[ExcludeFromCodeCoverage]
public record PropertyInfo
{
public string PropertyName { get; }
Expand Down

0 comments on commit 84d86f5

Please sign in to comment.