-
Notifications
You must be signed in to change notification settings - Fork 754
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xUnit is no longer able to run tests on UWP. MSTest supports this in Visual Studio 2022, so we are moving back to MSTest. (Rx used to used MSTest before, so this was a relatively straightforward change.) We had to make a few changes due to the fact that xUnit supplies a SynchronizationContext whereas MSTest does not. Also fixed a race condition in CreateAsyncTest.
- Loading branch information
Showing
211 changed files
with
4,684 additions
and
4,058 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
Rx.NET/Source/src/Microsoft.Reactive.Testing/IAssertionException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT License. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
namespace Xunit.Sdk | ||
{ | ||
/// <summary> | ||
/// Marker interface required by xUnit. | ||
/// </summary> | ||
/// <remarks> | ||
/// <para> | ||
/// The <c>xunit.assert.source</c> package normally includes this. However, unlike all the | ||
/// other types that package adds to our project, this one type is declared to be | ||
/// unconditionally public. | ||
/// </para> | ||
/// <para> | ||
/// We think this might be a bug: https://github.com/xunit/xunit/issues/2703 | ||
/// </para> | ||
/// <para> | ||
/// In any case, we do not want our library to be exporting public types in the Xunit.Sdk | ||
/// namespace. So the csproj file carefully excludes the Asserts/Sdk/IAssertionException.cs | ||
/// file supplied by the package (which defines this type as <c>public</c>), and this file | ||
/// supplies an equivalent but <c>internal</c> definition. | ||
/// </para> | ||
/// </remarks> | ||
internal interface IAssertionException | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.