aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
index 81289e5a..a12ad469 100644
--- a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
+++ b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
@@ -280,6 +280,12 @@ namespace WixToolsetTest.CoreIntegration
280 var errors = section.Tuples.OfType<ErrorTuple>().ToDictionary(t => t.Error); 280 var errors = section.Tuples.OfType<ErrorTuple>().ToDictionary(t => t.Error);
281 Assert.Equal("Category 55 Emergency Doomsday Crisis", errors[1234].Message.Trim()); 281 Assert.Equal("Category 55 Emergency Doomsday Crisis", errors[1234].Message.Trim());
282 Assert.Equal(" ", errors[5678].Message); 282 Assert.Equal(" ", errors[5678].Message);
283
284 var customAction1 = section.Tuples.OfType<CustomActionTuple>().Where(t => t.Id.Id == "CanWeReferenceAnError_YesWeCan").Single();
285 Assert.Equal("1234", customAction1.Target);
286
287 var customAction2 = section.Tuples.OfType<CustomActionTuple>().Where(t => t.Id.Id == "TextErrorsWorkOKToo").Single();
288 Assert.Equal("If you see this, something went wrong.", customAction2.Target);
283 } 289 }
284 } 290 }
285 291