aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/UI/test')
-rw-r--r--src/ext/UI/test/WixToolsetTest.UI/UIExtensionFixture.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ext/UI/test/WixToolsetTest.UI/UIExtensionFixture.cs b/src/ext/UI/test/WixToolsetTest.UI/UIExtensionFixture.cs
index e06feac7..9bc82fcf 100644
--- a/src/ext/UI/test/WixToolsetTest.UI/UIExtensionFixture.cs
+++ b/src/ext/UI/test/WixToolsetTest.UI/UIExtensionFixture.cs
@@ -1,5 +1,9 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3using Microsoft.VisualStudio.TestTools.UnitTesting;
4
5[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]
6
3namespace WixToolsetTest.UI 7namespace WixToolsetTest.UI
4{ 8{
5 using System.IO; 9 using System.IO;
@@ -109,7 +113,7 @@ namespace WixToolsetTest.UI
109 var bindFolder = TestData.Get(@"TestData", "data"); 113 var bindFolder = TestData.Get(@"TestData", "data");
110 var build = new Builder(folder, typeof(UIExtensionFactory), new[] { bindFolder }); 114 var build = new Builder(folder, typeof(UIExtensionFactory), new[] { bindFolder });
111 115
112 var results = build.BuildAndQuery(BuildX64, "Binary", "Dialog", "CustomAction", "ControlEvent", "InstallUISequence"); 116 var results = build.BuildAndQuery(Build, validate: true, "Binary", "Dialog", "CustomAction", "ControlEvent", "InstallUISequence");
113 WixAssert.Single(results, result => result.StartsWith("Dialog:WelcomeDlg\t")); 117 WixAssert.Single(results, result => result.StartsWith("Dialog:WelcomeDlg\t"));
114 WixAssert.Single(results, result => result.StartsWith("Dialog:CustomizeDlg\t")); 118 WixAssert.Single(results, result => result.StartsWith("Dialog:CustomizeDlg\t"));
115 WixAssert.Empty(results.Where(result => result.StartsWith("Dialog:SetupTypeDlg\t"))); 119 WixAssert.Empty(results.Where(result => result.StartsWith("Dialog:SetupTypeDlg\t")));