Skip to content

Commit 115da34

Browse files
committed
chore: update xunit version to v3
1 parent 445113c commit 115da34

File tree

39 files changed

+379
-95
lines changed

39 files changed

+379
-95
lines changed

.github/workflows/ci.yml

+19-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ on:
55
push:
66
branches: [ main, feature/*, hotfix/* ]
77
workflow_dispatch:
8+
inputs:
9+
seed:
10+
description: 'Enter an integer value between 0 and 2147483647.'
11+
type: number
12+
required: true
13+
default: 0
14+
15+
env:
16+
seed: ${{ inputs.seed || github.run_number }}
17+
NO_COLOR: true
818

919
jobs:
1020
test:
@@ -30,25 +40,28 @@ jobs:
3040
shell: bash
3141
working-directory: templates
3242

33-
- run: dotnet test -c Release -f net8.0 --no-build --collect:"XPlat Code Coverage" --consoleLoggerParameters:"Summary;Verbosity=Minimal"
43+
- name: Install Chromium headless shell
44+
run: dotnet run -c Release --no-build -f net8.0 --project src/docfx -- docs/docfx.json
45+
46+
- run: dotnet test -c Release -f net8.0 --no-build --collect:"XPlat Code Coverage" --consoleLoggerParameters:"Summary;Verbosity=Minimal" -- --seed ${{ env.seed }}
3447
id: test-net80
3548

36-
- run: dotnet test -c Release -f net9.0 --no-build --collect:"XPlat Code Coverage" --consoleLoggerParameters:"Summary;Verbosity=Minimal"
49+
- run: dotnet test -c Release -f net9.0 --no-build --collect:"XPlat Code Coverage" --consoleLoggerParameters:"Summary;Verbosity=Minimal" -- --seed ${{ env.seed }}
3750
if: matrix.os == 'ubuntu-latest'
3851
id: test-net90
3952

4053
- run: npm i -g @percy/cli
4154
if: matrix.os == 'ubuntu-latest'
4255

43-
- run: percy exec -- dotnet test -c Release -f net8.0 --filter Stage=Percy --no-build --collect:"XPlat Code Coverage"
56+
- run: percy exec -- dotnet test -c Release -f net8.0 --no-build --collect:"XPlat Code Coverage" -- --filter-trait "Stage=Percy"
4457
if: matrix.os == 'ubuntu-latest'
4558
env:
4659
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
4760

4861
- uses: codecov/codecov-action@v5
4962
if: matrix.os == 'ubuntu-latest'
5063
with:
51-
fail_ci_if_error: true
64+
fail_ci_if_error: false
5265

5366
- run: echo "DOTNET_DbgEnableMiniDump=1" >> $GITHUB_ENV
5467
if: matrix.os == 'ubuntu-latest'
@@ -68,8 +81,10 @@ jobs:
6881
name: logs-${{ matrix.os }}
6982
path: |
7083
msbuild.binlog
84+
test/**/TestResults/*.log
7185
test/**/TestResults/*.trx
7286
test/**/TestResults/*.html
87+
test/**/TestResults/*.ctrf
7388
7489
- uses: actions/upload-artifact@v4
7590
if: ${{ failure() && matrix.os == 'ubuntu-latest' }}

docfx.sln

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{926A0726-B
1616
ProjectSection(SolutionItems) = preProject
1717
test\Directory.Build.props = test\Directory.Build.props
1818
test\Directory.Packages.props = test\Directory.Packages.props
19+
test\xunit.runner.json = test\xunit.runner.json
1920
EndProjectSection
2021
EndProject
2122
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "docfx", "src\docfx\docfx.csproj", "{EF53214F-BA98-4026-BEED-CF771865C312}"

samples/Directory.Packages.props

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<Project>
2+
</Project>

samples/seed/dotnet/assembly/BuildFromAssembly.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.SourceLink.GitHub">
13+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1616
</PackageReference>

test/Directory.Build.props

+51-10
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,74 @@
11
<Project>
2+
<Import Project="$([MSBuild]::GetPathOfFileAbove('$(MSBuildThisFile)', '$(MSBuildThisFileDirectory)../'))" />
3+
24
<PropertyGroup>
35
<IsPackable>false</IsPackable>
46
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
57
</PropertyGroup>
68

9+
<!-- .NET 9 or later run tests per TargetFramework in parallel by default.
10+
It is necessary to disable this feature because there are tests that need to be executed sequentially that are marked with `[Collection("docfx STA")]`. -->
711
<PropertyGroup>
8-
<!--
9-
.NET 9 preview 2 or later run tests in parallel by default.
10-
It is necessary to disable this feature because there are tests that need to be executed sequentially that are marked with `[Collection("docfx STA")]`.
11-
-->
1212
<TestTfmsInParallel>false</TestTfmsInParallel>
1313
</PropertyGroup>
1414

15-
<Import Project="$([MSBuild]::GetPathOfFileAbove('$(MSBuildThisFile)', '$(MSBuildThisFileDirectory)../'))" />
15+
<!-- Configure `Microsoft.Testing.Platform` mode behaviors (https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-platform-integration-dotnet-test)-->
16+
<PropertyGroup>
17+
<!-- Enable `Microsoft.Testing.Platform` mode for `dotnet test` -->
18+
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
1619

17-
<ItemGroup>
18-
<None Include="TestData\**" CopyToOutputDirectory="PreserveNewest" />
19-
</ItemGroup>
20+
<!-- Show failure per test -->
21+
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
22+
23+
<!-- Show complete platform output -->
24+
<TestingPlatformCaptureOutput>false</TestingPlatformCaptureOutput>
25+
26+
<!-- Use `Microsoft.Testing.Platform` entrypoint. -->
27+
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
28+
29+
<!-- Change TestResults output directory. And enable detailed log outputs -->
30+
<TestingPlatformCommandLineArguments>$(TestingPlatformCommandLineArguments) --results-directory "$(MSBuildThisFileDirectory)TestResults"</TestingPlatformCommandLineArguments>
31+
32+
<!-- Ignore exit code 8 (the test session run zero tests) -->
33+
<TestingPlatformCommandLineArguments>$(TestingPlatformCommandLineArguments) --ignore-exit-code 8</TestingPlatformCommandLineArguments>
34+
</PropertyGroup>
2035

36+
<!-- Settings for CI environment -->
2137
<PropertyGroup Condition="'$(ContinuousIntegrationBuild)' == 'true' AND '$(PERCY_TOKEN)' == ''">
38+
<!-- Disable progress reports -->
39+
<TestingPlatformCommandLineArguments>$(TestingPlatformCommandLineArguments) --no-progress</TestingPlatformCommandLineArguments>
40+
41+
<!-- Enable trx/html reporters -->
42+
<TestingPlatformCommandLineArguments>$(TestingPlatformCommandLineArguments) --report-xunit-trx --report-xunit-trx-filename TestResults-$(MSBuildProjectName)-$(TargetFramework)-$(RUNNER_OS).trx</TestingPlatformCommandLineArguments>
43+
<TestingPlatformCommandLineArguments>$(TestingPlatformCommandLineArguments) --report-xunit-html --report-xunit-html-filename TestResults-$(MSBuildProjectName)-$(TargetFramework)-$(RUNNER_OS).html</TestingPlatformCommandLineArguments>
44+
<TestingPlatformCommandLineArguments>$(TestingPlatformCommandLineArguments) --report-ctrf --report-ctrf-filename TestResults-$(MSBuildProjectName)-$(TargetFramework)-$(RUNNER_OS).ctrf</TestingPlatformCommandLineArguments>
45+
</PropertyGroup>
46+
47+
<!-- Settings for VSTest mode. These settings will be removed in future. -->
48+
<PropertyGroup Condition="'$(ContinuousIntegrationBuild)' == 'true' AND '$(PERCY_TOKEN)' == ''">
49+
<!-- See: https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-platform-vs-vstest#communication-protocol-preview -->
2250
<VSTestResultsDirectory>$(MSBuildThisFileDirectory)TestResults</VSTestResultsDirectory>
2351
<VSTestLogger>$(VSTestLogger);trx%3BLogFileName=TestResults-$(MSBuildProjectName)-$(TargetFramework)-$(RUNNER_OS).trx</VSTestLogger>
2452
<VSTestLogger>$(VSTestLogger);html%3BLogFileName=TestResults-$(MSBuildProjectName)-$(TargetFramework)-$(RUNNER_OS).html</VSTestLogger>
2553
</PropertyGroup>
2654

55+
<!-- Add [assembly:CaptureConsole] attribute to assemblies -->
56+
<ItemGroup>
57+
<AssemblyAttribute Include="Xunit.CaptureConsole" />
58+
</ItemGroup>
59+
60+
<ItemGroup>
61+
<None Include="TestData\**" CopyToOutputDirectory="PreserveNewest" />
62+
<None Include="$(MSBuildThisFileDirectory)xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
63+
</ItemGroup>
64+
2765
<ItemGroup>
2866
<PackageReference Include="FluentAssertions" />
2967
<PackageReference Include="Microsoft.NET.Test.Sdk" />
30-
<PackageReference Include="xunit.runner.visualstudio" />
31-
<PackageReference Include="xunit" />
68+
<PackageReference Include="xunit.runner.visualstudio">
69+
<PrivateAssets>all</PrivateAssets>
70+
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
71+
</PackageReference>
72+
<PackageReference Include="xunit.v3" />
3273
</ItemGroup>
3374
</Project>

test/Directory.Packages.props

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
21
<Project>
32
<Import Project="$([MSBuild]::GetPathOfFileAbove('$(MSBuildThisFile)', '$(MSBuildThisFileDirectory)../'))" />
43

54
<ItemGroup>
65
<PackageVersion Include="FluentAssertions" Version="7.0.0" />
76
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
87
<PackageVersion Include="Verify.DiffPlex" Version="3.1.2" />
9-
<PackageVersion Include="Verify.Xunit" Version="28.4.0" />
10-
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
11-
<PackageVersion Include="xunit" Version="2.9.2" />
8+
<PackageVersion Include="Verify.XunitV3" Version="28.6.0" />
9+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.0" />
10+
<PackageVersion Include="xunit.v3" Version="1.0.0" />
1211
</ItemGroup>
1312

1413
<ItemGroup>

test/Docfx.Build.Common.Tests/Docfx.Build.Common.Tests.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
</PropertyGroup>
5+
26
<ItemGroup>
37
<ProjectReference Include="..\..\src\Docfx.Build.Common\Docfx.Build.Common.csproj" />
48
<ProjectReference Include="..\..\src\Docfx.Build\Docfx.Build.csproj" />

test/Docfx.Build.ManagedReference.Tests/Docfx.Build.ManagedReference.Tests.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
</PropertyGroup>
5+
26
<ItemGroup>
37
<ProjectReference Include="..\..\src\Docfx.Build\Docfx.Build.csproj" />
48
<ProjectReference Include="..\..\src\Docfx.Build.ManagedReference\Docfx.Build.ManagedReference.csproj" />

test/Docfx.Build.OverwriteDocuments.Tests/Docfx.Build.OverwriteDocuments.Tests.csproj

+5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
</PropertyGroup>
5+
26
<ItemGroup>
37
<PackageReference Include="Markdig" />
48
</ItemGroup>
9+
510
<ItemGroup>
611
<ProjectReference Include="..\..\src\Docfx.Build.OverwriteDocuments\Docfx.Build.OverwriteDocuments.csproj" />
712
<ProjectReference Include="..\Docfx.Tests.Common\Docfx.Tests.Common.csproj" />

test/Docfx.Build.RestApi.Tests/Docfx.Build.RestApi.Tests.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
</PropertyGroup>
5+
26
<ItemGroup>
37
<None Include="TestData\**" CopyToOutputDirectory="PreserveNewest" />
48
</ItemGroup>

test/Docfx.Build.RestApi.WithPlugins.Tests/Docfx.Build.RestApi.WithPlugins.Tests.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
</PropertyGroup>
5+
26
<ItemGroup>
37
<ProjectReference Include="..\..\src\Docfx.Build.OperationLevelRestApi\Docfx.Build.OperationLevelRestApi.csproj" />
48
<ProjectReference Include="..\..\src\Docfx.Build.TagLevelRestApi\Docfx.Build.TagLevelRestApi.csproj" />

test/Docfx.Build.SchemaDriven.Tests/Docfx.Build.SchemaDriven.Tests.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
</PropertyGroup>
5+
26
<ItemGroup>
37
<ProjectReference Include="..\..\src\Docfx.Build.Common\Docfx.Build.Common.csproj" />
48
<ProjectReference Include="..\..\src\Docfx.Build\Docfx.Build.csproj" />

test/Docfx.Build.Tests/Docfx.Build.Tests.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
</PropertyGroup>
5+
26
<ItemGroup>
37
<Compile Remove="TestData\snippets\dataflowdegreeofparallelism.cs" />
48
</ItemGroup>

test/Docfx.Build.Tests/ExtractSearchIndexFromHtmlTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ This is article title
219219
manifest.Files.Add(manifestItem);
220220

221221
// process the fake manifest, using tempTestFolder as the output folder
222-
_extractor.Process(manifest, tempTestFolder);
222+
_extractor.Process(manifest, tempTestFolder, TestContext.Current.CancellationToken);
223223

224224
var expectedIndexJSON = @"{
225225
""index.html"": {

test/Docfx.Build.Tests/PostProcessors/SitemapGeneratorTests.cs

+1-9
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,13 @@
55
using Docfx.Plugins;
66
using Docfx.Tests.Common;
77
using Xunit;
8-
using Xunit.Abstractions;
98
using DocumentType = Docfx.DataContracts.Common.Constants.DocumentType;
109

1110
namespace Docfx.Build.Engine.Tests;
1211

1312
[Collection("docfx STA")]
1413
public class SitemapGeneratorTests : TestBase
1514
{
16-
private readonly ITestOutputHelper _output;
17-
18-
public SitemapGeneratorTests(ITestOutputHelper output)
19-
{
20-
_output = output;
21-
}
22-
2315
public override void Dispose()
2416
{
2517
base.Dispose();
@@ -58,7 +50,7 @@ public void TestSitemapGenerator()
5850
var sitemapPath = Path.Combine(outputFolder, "sitemap.xml");
5951

6052
// Act
61-
manifest = sitemapGenerator.Process(manifest, outputFolder);
53+
manifest = sitemapGenerator.Process(manifest, outputFolder, TestContext.Current.CancellationToken);
6254

6355
// Assert
6456
Assert.Equal("https://example.com/", manifest.Sitemap.BaseUrl);

test/Docfx.Build.Tests/RemoveDebugInfoTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void TestBasicFeature()
4343
new HtmlPostProcessor
4444
{
4545
Handlers = { new RemoveDebugInfo() }
46-
}.Process(manifest, _outputFolder);
46+
}.Process(manifest, _outputFolder, TestContext.Current.CancellationToken);
4747

4848
var actual = File.ReadAllText(Path.Combine(_outputFolder, "a.html"));
4949
Assert.Equal("<p id='b1'>section<a href='http://bing.com#top'>Microsoft Bing</a></p>", actual);

test/Docfx.Build.Tests/ValidateBookmarkTest.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void TestBasicFeature()
6363
new HtmlPostProcessor
6464
{
6565
Handlers = { new ValidateBookmark() }
66-
}.Process(manifest, _outputFolder);
66+
}.Process(manifest, _outputFolder, TestContext.Current.CancellationToken);
6767
}
6868
finally
6969
{
@@ -107,7 +107,7 @@ public void TestNoCheck()
107107
new HtmlPostProcessor
108108
{
109109
Handlers = { new ValidateBookmark() }
110-
}.Process(manifest, _outputFolder);
110+
}.Process(manifest, _outputFolder, TestContext.Current.CancellationToken);
111111
}
112112
finally
113113
{
@@ -150,7 +150,7 @@ public void TestLinkThatContainsNonAsciiChars()
150150
new HtmlPostProcessor
151151
{
152152
Handlers = { new ValidateBookmark() }
153-
}.Process(manifest, _outputFolder);
153+
}.Process(manifest, _outputFolder, TestContext.Current.CancellationToken);
154154
}
155155
finally
156156
{

test/Docfx.Build.Tests/XRefArchiveBuilderTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public async Task TestDownload()
2020
// sorted: true
2121
// references: []
2222
// ```
23-
Assert.True(await builder.DownloadAsync(new Uri("http://dotnet.github.io/docfx/xrefmap.yml"), ZipFile));
23+
Assert.True(await builder.DownloadAsync(new Uri("http://dotnet.github.io/docfx/xrefmap.yml"), ZipFile, TestContext.Current.CancellationToken));
2424

2525
using (var xar = XRefArchive.Open(ZipFile, XRefArchiveMode.Read))
2626
{

test/Docfx.Build.Tests/XRefMapDownloaderTest.cs

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class XRefMapDownloadTest
1313
public async Task BaseUrlIsSet()
1414
{
1515
var downloader = new XRefMapDownloader();
16-
var xrefs = await downloader.DownloadAsync(new Uri("https://dotnet.github.io/docfx/xrefmap.yml")) as XRefMap;
16+
var xrefs = await downloader.DownloadAsync(new Uri("https://dotnet.github.io/docfx/xrefmap.yml"), TestContext.Current.CancellationToken) as XRefMap;
1717
Assert.NotNull(xrefs);
1818
Assert.Equal("https://dotnet.github.io/docfx/", xrefs.BaseUrl);
1919
}
@@ -27,7 +27,7 @@ public async Task ReadLocalXRefMapWithFallback()
2727

2828
// Get fallback TestData/xrefmap.yml which contains uid: 'str'
2929
var reader = await new XRefCollection(from u in xrefmaps
30-
select new Uri(u, UriKind.RelativeOrAbsolute)).GetReaderAsync(basePath, fallbackFolders);
30+
select new Uri(u, UriKind.RelativeOrAbsolute)).GetReaderAsync(basePath, fallbackFolders, TestContext.Current.CancellationToken);
3131

3232
var xrefSpec = reader.Find("str");
3333
Assert.NotNull(xrefSpec);
@@ -41,7 +41,7 @@ public async Task ReadLocalXRefMapJsonFileTest()
4141
var path = Path.Combine(Directory.GetCurrentDirectory(), "TestData", "xrefmap.json");
4242

4343
var downloader = new XRefMapDownloader();
44-
var xrefMap = await downloader.DownloadAsync(new Uri(path)) as XRefMap;
44+
var xrefMap = await downloader.DownloadAsync(new Uri(path), TestContext.Current.CancellationToken) as XRefMap;
4545

4646
// Assert
4747
xrefMap.Should().NotBeNull();
@@ -55,7 +55,7 @@ public async Task ReadLocalXRefMapGZippedJsonFileTest()
5555
var path = Path.Combine(Directory.GetCurrentDirectory(), "TestData", "xrefmap.json.gz");
5656

5757
var downloader = new XRefMapDownloader();
58-
var xrefMap = await downloader.DownloadAsync(new Uri(path)) as XRefMap;
58+
var xrefMap = await downloader.DownloadAsync(new Uri(path), TestContext.Current.CancellationToken) as XRefMap;
5959

6060
// Assert
6161
xrefMap.Should().NotBeNull();
@@ -69,7 +69,7 @@ public async Task ReadLocalXRefMapGZippedYamlFileTest()
6969
var path = Path.Combine(Directory.GetCurrentDirectory(), "TestData", "xrefmap.yml.gz");
7070

7171
var downloader = new XRefMapDownloader();
72-
var xrefMap = await downloader.DownloadAsync(new Uri(path)) as XRefMap;
72+
var xrefMap = await downloader.DownloadAsync(new Uri(path), TestContext.Current.CancellationToken) as XRefMap;
7373

7474
// Assert
7575
xrefMap.Should().NotBeNull();
@@ -86,7 +86,7 @@ public async Task ReadRemoteXRefMapYamlFileTest1()
8686
var path = "https://horizongir.github.io/ZedGraph/xrefmap.yml";
8787

8888
var downloader = new XRefMapDownloader();
89-
var xrefMap = await downloader.DownloadAsync(new Uri(path)) as XRefMap;
89+
var xrefMap = await downloader.DownloadAsync(new Uri(path), TestContext.Current.CancellationToken) as XRefMap;
9090

9191
// Assert
9292
xrefMap.Sorted.Should().BeTrue();
@@ -115,7 +115,7 @@ public async Task ReadRemoteXRefMapJsonFileTest2()
115115
var path = "https://normanderwan.github.io/UnityXrefMaps/xrefmap.yml";
116116

117117
var downloader = new XRefMapDownloader();
118-
var xrefMap = await downloader.DownloadAsync(new Uri(path)) as XRefMap;
118+
var xrefMap = await downloader.DownloadAsync(new Uri(path), TestContext.Current.CancellationToken) as XRefMap;
119119

120120
// Assert
121121
xrefMap.Sorted.Should().BeTrue();

0 commit comments

Comments
 (0)