-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SystemTests: add net9 portability test (#326)
* SystemTests: add net9 portability test * Apply suggestions from code review Co-authored-by: obligaron <[email protected]> --------- Co-authored-by: obligaron <[email protected]>
- Loading branch information
1 parent
8f62fbc
commit 45df08c
Showing
5 changed files
with
23 additions
and
1 deletion.
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
16 changes: 16 additions & 0 deletions
16
Tests/Reqnroll.SystemTests/Portability/Net90PortabilityTest.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,16 @@ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using Reqnroll.TestProjectGenerator.Data; | ||
|
||
namespace Reqnroll.SystemTests.Portability; | ||
|
||
[TestClass] | ||
[TestCategory("DotNet")] | ||
[TestCategory("Net90")] | ||
public class Net90PortabilityTest : PortabilityTestBase | ||
{ | ||
protected override void TestInitialize() | ||
{ | ||
base.TestInitialize(); | ||
_testRunConfiguration.TargetFramework = TargetFramework.Net90; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -20,6 +20,7 @@ public enum TargetFramework | |
Net50, | ||
Net60, | ||
Net70, | ||
Net80 | ||
Net80, | ||
Net90, | ||
} | ||
} |
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