aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-05-23 21:54:53 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-05-23 21:59:28 +1000
commit9c54d2fce80983bbee5f0f113b5aa30f22bc8a23 (patch)
tree77712f1e3ac68e9f2de2172d035aaae0b27f5de2 /src/test/WixToolsetTest.CoreIntegration/TestData/BadInput
parent96e966ce322bc630afed6d0ca8c9ec68191c5f83 (diff)
downloadwix-9c54d2fce80983bbee5f0f113b5aa30f22bc8a23.tar.gz
wix-9c54d2fce80983bbee5f0f113b5aa30f22bc8a23.tar.bz2
wix-9c54d2fce80983bbee5f0f113b5aa30f22bc8a23.zip
Add failing test for RegistryKey without Id and child extension element.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/BadInput')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/RegistryKey.wxs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/RegistryKey.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/RegistryKey.wxs
new file mode 100644
index 00000000..c717680b
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BadInput/RegistryKey.wxs
@@ -0,0 +1,13 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
3 xmlns:ex="http://www.example.com/scheams/v1/wxs">
4 <Fragment>
5 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
6 <Component Id="MiscComponent" Guid="7C40C257-AB36-4B8C-8FD1-C56E0AC4AAEF">
7 <RegistryKey>
8 <ex:Example />
9 </RegistryKey>
10 </Component>
11 </ComponentGroup>
12 </Fragment>
13</Wix>