remove nfluent

This commit is contained in:
Stef Heyenrath
2026-02-26 22:02:54 +01:00
parent c4c8ad3fa9
commit 62d0b0db5b
142 changed files with 899 additions and 1020 deletions

View File

@@ -6,7 +6,7 @@ using System.Linq.Dynamic.Core;
using System.Reflection;
using FluentAssertions;
using Newtonsoft.Json.Linq;
using NFluent;
using WireMock.Util;
using Xunit;
@@ -65,9 +65,9 @@ public class JsonUtilsTests
// Assert
var queryable = new[] { instance }.AsQueryable().Select(line);
bool result = queryable.Any("it == \"Test\"");
Check.That(result).IsTrue();
result.Should().BeTrue();
Check.That(line).IsEqualTo("string(it)");
line.Should().Be("string(it)");
}
[Fact]
@@ -192,4 +192,4 @@ public class JsonUtilsTests
"System.String get_C()"
});
}
}
}