chore(deps): update dependency fluentassertions.analyzers to v0.22.0 (#726)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2023-08-18 18:15:08 +00:00 коммит произвёл GitHub
Родитель 2192418ed2
Коммит 1b9185c181
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -10,7 +10,7 @@
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />
<PackageVersion Include="Docker.DotNet" Version="3.125.15" />
<PackageVersion Include="FluentAssertions" Version="6.11.0" />
<PackageVersion Include="FluentAssertions.Analyzers" Version="0.21.0" />
<PackageVersion Include="FluentAssertions.Analyzers" Version="0.22.0" />
<PackageVersion Include="Microsoft.AspNet.WebApi.Client" Version="5.2.9" />
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />

Просмотреть файл

@ -28,7 +28,7 @@ public class GraphTranslationUtilityTests
var convertedGraphContract = GraphTranslationUtility.AccumulateAndConvertToContract(dependencyGraphs);
convertedGraphContract.Count.Should().Be(2);
convertedGraphContract.Should().HaveCount(2);
convertedGraphContract.Keys.Should().BeEquivalentTo(new List<string>() { "file1.json", "file2.json" });
var graph1 = convertedGraphContract["file1.json"];

Просмотреть файл

@ -260,7 +260,7 @@ public class BcdeScanExecutionServiceTests
explicitlyReferencedComponents.Should().ContainSingle().And.Contain(this.detectedComponents[0].Component.Id);
var actualGraph = matchingGraph.Value.Graph;
actualGraph.Keys.Count.Should().Be(2);
actualGraph.Keys.Should().HaveCount(2);
actualGraph[this.detectedComponents[0].Component.Id].Count.Should().Be(1);
actualGraph[this.detectedComponents[0].Component.Id].Should().Contain(this.detectedComponents[1].Component.Id);
actualGraph[this.detectedComponents[1].Component.Id].Should().BeNull();
@ -335,7 +335,7 @@ public class BcdeScanExecutionServiceTests
explicitlyReferencedComponents.Should().Contain(this.detectedComponents[1].Component.Id);
var actualGraph = matchingGraph.Value.Graph;
actualGraph.Keys.Count.Should().Be(2);
actualGraph.Keys.Should().HaveCount(2);
actualGraph[this.detectedComponents[0].Component.Id].Count.Should().Be(1);
actualGraph[this.detectedComponents[0].Component.Id].Should().Contain(this.detectedComponents[1].Component.Id);
actualGraph[this.detectedComponents[1].Component.Id].Count.Should().Be(1);