Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5349b6f
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 6, 2025
26c2299
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 8, 2025
fee84a3
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 8, 2025
dde3fc7
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 9, 2025
2983998
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 10, 2025
471155d
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 11, 2025
19ed89f
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 11, 2025
8e3151f
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 12, 2025
d842781
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 13, 2025
aa0543f
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 14, 2025
4dd5cfd
Merge branch 'release/10.0.1xx' of https://github.com/dotnet/sdk into…
DonnaChen888 Dec 15, 2025
d7f68d6
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 16, 2025
385884d
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 17, 2025
7115630
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Dec 18, 2025
1331d06
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 18, 2025
a93c707
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 19, 2025
f208120
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 22, 2025
c8644d9
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Dec 23, 2025
c9bba23
Merge branch 'release/10.0.1xx' into darc-release/10.0.1xx-49056a71-0…
DonnaChen888 Jan 6, 2026
dc26e67
Fix test
Youssef1313 Jan 8, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/Version.Details.props
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ This file should be imported by eng/Versions.props
<!-- dotnet/core-setup dependencies -->
<NETStandardLibraryRefPackageVersion>2.1.0</NETStandardLibraryRefPackageVersion>
<!-- microsoft/testfx dependencies -->
<MicrosoftTestingPlatformPackageVersion>2.1.0-preview.25604.3</MicrosoftTestingPlatformPackageVersion>
<MSTestPackageVersion>4.1.0-preview.25604.3</MSTestPackageVersion>
<MicrosoftTestingPlatformPackageVersion>2.1.0-preview.25617.6</MicrosoftTestingPlatformPackageVersion>
<MSTestPackageVersion>4.1.0-preview.25617.6</MSTestPackageVersion>
</PropertyGroup>
<!--Property group for alternate package version names-->
<PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -561,13 +561,13 @@
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>882ed0b3b33af854c2455a23e8bf99f268ff244c</Sha>
</Dependency>
<Dependency Name="Microsoft.Testing.Platform" Version="2.1.0-preview.25604.3">
<Dependency Name="Microsoft.Testing.Platform" Version="2.1.0-preview.25617.6">
<Uri>https://github.com/microsoft/testfx</Uri>
<Sha>aaa16e9321c4344b439324378ddb23b60e1d3461</Sha>
<Sha>e183a03b1e200baa83f3b00b83633338d356581a</Sha>
</Dependency>
<Dependency Name="MSTest" Version="4.1.0-preview.25604.3">
<Dependency Name="MSTest" Version="4.1.0-preview.25617.6">
<Uri>https://github.com/microsoft/testfx</Uri>
<Sha>aaa16e9321c4344b439324378ddb23b60e1d3461</Sha>
<Sha>e183a03b1e200baa83f3b00b83633338d356581a</Sha>
</Dependency>
<Dependency Name="Microsoft.Extensions.Configuration.Ini" Version="10.0.3">
<Uri>https://github.com/dotnet/dotnet</Uri>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,14 @@ public void RunMultipleTestProjectsWithDifferentFailures_ShouldReturnExitCodeGen

CommandResult result = new DotnetTestCommand(Log, disableNewOutput: false)
.WithWorkingDirectory(testInstance.Path)
.Execute("--minimum-expected-tests 2",
.Execute("--minimum-expected-tests", "2",
MicrosoftTestingPlatformOptions.ConfigurationOption.Name, configuration);

if (!TestContext.IsLocalized())
{
Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("TestProject", TestingConstants.ZeroTestsRan, true, configuration, "8"), result.StdOut);
Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("OtherTestProject", TestingConstants.Failed, true, configuration, "2"), result.StdOut);
Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("AnotherTestProject", TestingConstants.Failed, true, configuration, "9"), result.StdOut);
Assert.Matches(RegexPatternHelper.GenerateProjectRegexPattern("AnotherTestProject", TestingConstants.Passed, true, configuration), result.StdOut);

result.StdOut
.Should().Contain("Test run summary: Failed!")
Expand Down
Loading