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

fluentassertions / fluentassertions.datasets / 13090818501

01 Feb 2025 05:24PM UTC coverage: 94.362%. Remained the same
13090818501

Pull #20

github

web-flow
Revert "Bump FluentAssertions from 8.0.0 to 8.0.1"

This reverts commit 6012f9891.
Pull Request #20: Revert "Bump FluentAssertions from 8.0.0 to 8.0.1"

458 of 498 branches covered (91.97%)

Branch coverage included in aggregate %.

1266 of 1329 relevant lines covered (95.26%)

4648.54 hits per line

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

100.0
/Src/FluentAssertions.DataSets/InitializeDataSetSupport.cs
1
using FluentAssertions;
2
using FluentAssertions.DataSets;
3
using FluentAssertions.Extensibility;
4

5
[assembly: CustomAssertionsAssembly]
6

7
[assembly: AssertionEngineInitializer(
8
    typeof(InitializeDataSetSupport),
9
    nameof(InitializeDataSetSupport.Initialize))]
10

11
namespace FluentAssertions.DataSets;
12

13
public static class InitializeDataSetSupport
14
{
15
    private static readonly object SyncObject = new();
2✔
16

17
    // ReSharper disable once UnusedMember.Global
18
#pragma warning disable CA1822
19
    public static void Initialize()
20
#pragma warning restore CA1822
21
    {
22
        lock (SyncObject)
2✔
23
        {
24
            AssertionConfiguration.Current.Equivalency.Plan.AddDataSetSupport();
2✔
25
        }
2✔
26
    }
2✔
27
}
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