Skip to content

Commit

Permalink
Update TemplateTests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Jun 26, 2024
1 parent 6b689bd commit 1cc2898
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,11 @@ public void BuildWindowsAppSDKSelfContained(string id, bool wasdkself, bool nets
}

[Test]
[TestCase("maui", true, true)]
[TestCase("maui", true, false)]
[TestCase("maui", false, true)]
[TestCase("maui", false, false)]
public void BuildWindowsRidGraph(string id, bool useridgraph, bool unpackaged)
[TestCase("maui", true, "None")]
[TestCase("maui", true, "MSIX")]
[TestCase("maui", false, "None")]
[TestCase("maui", false, "MSIX")]
public void BuildWindowsRidGraph(string id, bool useridgraph, string packageType)
{
if (TestEnvironment.IsMacOS)
Assert.Ignore("This test is designed for testing a windows build.");
Expand All @@ -258,7 +258,7 @@ public void BuildWindowsRidGraph(string id, bool useridgraph, bool unpackaged)
$"""
<UseMaui>true</UseMaui>
<UseRidGraph>{useridgraph}</UseRidGraph>
<WindowsPackageType>{unpackaged}</WindowsPackageType>
<WindowsPackageType>{packageType}</WindowsPackageType>
""");

var extendedBuildProps = BuildProps;
Expand Down

0 comments on commit 1cc2898

Please sign in to comment.