Skip to content

Commit 36fd471

Browse files
authored
Merge pull request #125 from dpvreony/renovate/xunit-dotnet-monorepo
Update xunit-dotnet monorepo
2 parents 021c4a0 + f0801b2 commit 36fd471

File tree

34 files changed

+35
-35
lines changed

34 files changed

+35
-35
lines changed

src/Directory.build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030

3131
<ItemGroup Condition="$(IsTestProject)">
3232
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
33-
<PackageReference Include="xunit" Version="2.5.0" />
34-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
33+
<PackageReference Include="xunit" Version="2.6.2" />
34+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4" />
3535
<PackageReference Include="Xunit.StaFact" Version="1.1.11" />
3636
<!--<PackageReference Include="PublicApiGenerator" Version="8.1.0" />-->
3737
</ItemGroup>

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT10Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
6161
arg7,
6262
arg8,
6363
arg9,
64-
arg10)).ConfigureAwait(false);
64+
arg10));
6565
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6666
}
6767
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT11Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
6464
arg8,
6565
arg9,
6666
arg10,
67-
arg11)).ConfigureAwait(false);
67+
arg11));
6868
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6969
}
7070
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT12Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
6767
arg9,
6868
arg10,
6969
arg11,
70-
arg12)).ConfigureAwait(false);
70+
arg12));
7171
Assert.Equal(expectedParameterNameForException, exception.ParamName);
7272
}
7373
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT13Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7070
arg10,
7171
arg11,
7272
arg12,
73-
arg13)).ConfigureAwait(false);
73+
arg13));
7474
Assert.Equal(expectedParameterNameForException, exception.ParamName);
7575
}
7676
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT14Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7373
arg11,
7474
arg12,
7575
arg13,
76-
arg14)).ConfigureAwait(false);
76+
arg14));
7777
Assert.Equal(expectedParameterNameForException, exception.ParamName);
7878
}
7979
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT15Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7676
arg12,
7777
arg13,
7878
arg14,
79-
arg15)).ConfigureAwait(false);
79+
arg15));
8080
Assert.Equal(expectedParameterNameForException, exception.ParamName);
8181
}
8282
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT16Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7979
arg13,
8080
arg14,
8181
arg15,
82-
arg16)).ConfigureAwait(false);
82+
arg16));
8383
Assert.Equal(expectedParameterNameForException, exception.ParamName);
8484
}
8585
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT1Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
3232
FakeObject arg,
3333
string expectedParameterNameForException)
3434
{
35-
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(arg)).ConfigureAwait(false);
35+
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(arg));
3636
Assert.Equal(expectedParameterNameForException, exception.ParamName);
3737
}
3838
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT2Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
3737
{
3838
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(
3939
arg1,
40-
arg2)).ConfigureAwait(false);
40+
arg2));
4141
Assert.Equal(expectedParameterNameForException, exception.ParamName);
4242
}
4343
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT3Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4040
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(
4141
arg1,
4242
arg2,
43-
arg3)).ConfigureAwait(false);
43+
arg3));
4444
Assert.Equal(expectedParameterNameForException, exception.ParamName);
4545
}
4646
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT4Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4343
arg1,
4444
arg2,
4545
arg3,
46-
arg4)).ConfigureAwait(false);
46+
arg4));
4747
Assert.Equal(expectedParameterNameForException, exception.ParamName);
4848
}
4949
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT5Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4646
arg2,
4747
arg3,
4848
arg4,
49-
arg5)).ConfigureAwait(false);
49+
arg5));
5050
Assert.Equal(expectedParameterNameForException, exception.ParamName);
5151
}
5252
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT6Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4949
arg3,
5050
arg4,
5151
arg5,
52-
arg6)).ConfigureAwait(false);
52+
arg6));
5353
Assert.Equal(expectedParameterNameForException, exception.ParamName);
5454
}
5555
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT7Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
5252
arg4,
5353
arg5,
5454
arg6,
55-
arg7)).ConfigureAwait(false);
55+
arg7));
5656
Assert.Equal(expectedParameterNameForException, exception.ParamName);
5757
}
5858
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT8Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
5555
arg5,
5656
arg6,
5757
arg7,
58-
arg8)).ConfigureAwait(false);
58+
arg8));
5959
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6060
}
6161
}

src/NetTestRegimentation.UnitTests/ITestAsyncMethodWithNullableParametersT9Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
5858
arg6,
5959
arg7,
6060
arg8,
61-
arg9)).ConfigureAwait(false);
61+
arg9));
6262
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6363
}
6464
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT10Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
6464
arg7?.Object,
6565
arg8?.Object,
6666
arg9?.Object,
67-
arg10?.Object)).ConfigureAwait(false);
67+
arg10?.Object));
6868
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6969
}
7070
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT11Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
6767
arg8?.Object,
6868
arg9?.Object,
6969
arg10?.Object,
70-
arg11?.Object)).ConfigureAwait(false);
70+
arg11?.Object));
7171
Assert.Equal(expectedParameterNameForException, exception.ParamName);
7272
}
7373
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT12Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7070
arg9?.Object,
7171
arg10?.Object,
7272
arg11?.Object,
73-
arg12?.Object)).ConfigureAwait(false);
73+
arg12?.Object));
7474
Assert.Equal(expectedParameterNameForException, exception.ParamName);
7575
}
7676
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT13Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7373
arg10?.Object,
7474
arg11?.Object,
7575
arg12?.Object,
76-
arg13?.Object)).ConfigureAwait(false);
76+
arg13?.Object));
7777
Assert.Equal(expectedParameterNameForException, exception.ParamName);
7878
}
7979
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT14Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7676
arg11?.Object,
7777
arg12?.Object,
7878
arg13?.Object,
79-
arg14?.Object)).ConfigureAwait(false);
79+
arg14?.Object));
8080
Assert.Equal(expectedParameterNameForException, exception.ParamName);
8181
}
8282
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT15Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
7979
arg12?.Object,
8080
arg13?.Object,
8181
arg14?.Object,
82-
arg15?.Object)).ConfigureAwait(false);
82+
arg15?.Object));
8383
Assert.Equal(expectedParameterNameForException, exception.ParamName);
8484
}
8585
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT16Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
8282
arg13?.Object,
8383
arg14?.Object,
8484
arg15?.Object,
85-
arg16?.Object)).ConfigureAwait(false);
85+
arg16?.Object));
8686
Assert.Equal(expectedParameterNameForException, exception.ParamName);
8787
}
8888
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT1Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
3535
Mock<FakeObject> arg,
3636
string expectedParameterNameForException)
3737
{
38-
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(arg?.Object)).ConfigureAwait(false);
38+
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(arg?.Object));
3939
Assert.Equal(expectedParameterNameForException, exception.ParamName);
4040
}
4141
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT2Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4040
{
4141
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(
4242
arg1?.Object,
43-
arg2?.Object)).ConfigureAwait(false);
43+
arg2?.Object));
4444
Assert.Equal(expectedParameterNameForException, exception.ParamName);
4545
}
4646
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT3Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4343
var exception = await Assert.ThrowsAsync<ArgumentNullException>(() => ArgumentHelpers.ThrowIfNullAsync(
4444
arg1?.Object,
4545
arg2?.Object,
46-
arg3?.Object)).ConfigureAwait(false);
46+
arg3?.Object));
4747
Assert.Equal(expectedParameterNameForException, exception.ParamName);
4848
}
4949
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT4Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4646
arg1?.Object,
4747
arg2?.Object,
4848
arg3?.Object,
49-
arg4?.Object)).ConfigureAwait(false);
49+
arg4?.Object));
5050
Assert.Equal(expectedParameterNameForException, exception.ParamName);
5151
}
5252
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT5Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
4949
arg2?.Object,
5050
arg3?.Object,
5151
arg4?.Object,
52-
arg5?.Object)).ConfigureAwait(false);
52+
arg5?.Object));
5353
Assert.Equal(expectedParameterNameForException, exception.ParamName);
5454
}
5555
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT6Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
5252
arg3?.Object,
5353
arg4?.Object,
5454
arg5?.Object,
55-
arg6?.Object)).ConfigureAwait(false);
55+
arg6?.Object));
5656
Assert.Equal(expectedParameterNameForException, exception.ParamName);
5757
}
5858
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT7Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
5555
arg4?.Object,
5656
arg5?.Object,
5757
arg6?.Object,
58-
arg7?.Object)).ConfigureAwait(false);
58+
arg7?.Object));
5959
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6060
}
6161
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT8Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
5858
arg5?.Object,
5959
arg6?.Object,
6060
arg7?.Object,
61-
arg8?.Object)).ConfigureAwait(false);
61+
arg8?.Object));
6262
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6363
}
6464
}

src/NetTestRegimentation.UnitTests/Moq/ITestAsyncMethodWithMoqNullableParametersT9Test.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public async Task ThrowsArgumentNullExceptionAsync(
6161
arg6?.Object,
6262
arg7?.Object,
6363
arg8?.Object,
64-
arg9?.Object)).ConfigureAwait(false);
64+
arg9?.Object));
6565
Assert.Equal(expectedParameterNameForException, exception.ParamName);
6666
}
6767
}

src/NetTestRegimentation.XUnit/NetTestRegimentation.XUnit.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.VisualStudio.Validation" Version="17.8.8" />
11-
<PackageReference Include="xunit.extensibility.core" Version="2.5.0" />
11+
<PackageReference Include="xunit.extensibility.core" Version="2.6.2" />
1212
</ItemGroup>
1313

1414
</Project>

0 commit comments

Comments
 (0)