Skip to content
Prev Previous commit
Next Next commit
Make fact a theory so I can revert then re-revert the 8.0 tests into …
…a PR
  • Loading branch information
nagilson committed Oct 7, 2022
commit 3d0dc5636c0335ab50e810a9a95c61ee4ee6e4e6
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ public void RuntimeSpecificEnablesOrDisablesRuntimeIdentifierByDefaultBasedOnVal
}
}

[Fact]
public void RuntimeIdentifiersDisablesRuntimeSpecificFDDBehavior()
[Theory]
[InlineData("net7.0")]
public void RuntimeIdentifiersDisablesRuntimeSpecificFDDBehavior(string targetFramework)
{
string targetFramework = "net8.0";
var expectedRuntimeIdentifier = EnvironmentInfo.GetCompatibleRid(targetFramework);
TestAsset testAsset = _testAssetsManager.CreateTestProject(_testProject, identifier: $"RuntimeIdentifierS_{targetFramework}") // the S is intentional to call atention to it
.WithTargetFramework(targetFramework)
Expand Down