aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-03 16:14:32 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-03 20:46:59 +1000
commita26c9ac0e9b02360b298ae5c619ca4070d11ae9a (patch)
treecaa1361272a8ff67f1c38ac37f8256ab7d967072 /src/test/WixToolsetTest.CoreIntegration/TestData
parent11112ebcdf97d4fa53e34d9dfe48410ff2378435 (diff)
downloadwix-a26c9ac0e9b02360b298ae5c619ca4070d11ae9a.tar.gz
wix-a26c9ac0e9b02360b298ae5c619ca4070d11ae9a.tar.bz2
wix-a26c9ac0e9b02360b298ae5c619ca4070d11ae9a.zip
Add failing test for when EnsureTable references an extension table with a different name than its tuple.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/EnsureTable/EnsureTable.wxs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/EnsureTable/EnsureTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/EnsureTable/EnsureTable.wxs
new file mode 100644
index 00000000..01767abb
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/EnsureTable/EnsureTable.wxs
@@ -0,0 +1,10 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents">
5 <ComponentGroupRef Id="MinimalComponentGroup" />
6 </ComponentGroup>
7
8 <EnsureTable Id="Wix4Example" />
9 </Fragment>
10</Wix>