aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-18 21:17:51 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-18 21:31:28 +1000
commit190135bbe8e941dee1d60d10b03e11a91574c11f (patch)
tree381651cfbb157c0b46768fed705e6026ad2d3a2e /src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs
parenta6091afa5bd24fe65e7fc20f179ed888301afdf8 (diff)
downloadwix-190135bbe8e941dee1d60d10b03e11a91574c11f.tar.gz
wix-190135bbe8e941dee1d60d10b03e11a91574c11f.tar.bz2
wix-190135bbe8e941dee1d60d10b03e11a91574c11f.zip
Implement Burn pdb.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs b/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs
index 0e740554..44a0e283 100644
--- a/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs
+++ b/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs
@@ -50,21 +50,7 @@ namespace WixToolsetTest.CoreIntegration
50 result.AssertSuccess(); 50 result.AssertSuccess();
51 51
52 Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\test.exe"))); 52 Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\test.exe")));
53#if TODO
54 Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\test.wixpdb"))); 53 Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\test.wixpdb")));
55#endif
56
57 var intermediate = Intermediate.Load(Path.Combine(intermediateFolder, @"test.wir"));
58 var section = intermediate.Sections.Single();
59
60 var bundleTuple = section.Tuples.OfType<WixBundleTuple>().Single();
61 Assert.Equal("1.0.0.0", bundleTuple.Version);
62
63 var previousVersion = bundleTuple.Fields[(int)WixBundleTupleFields.Version].PreviousValue;
64 Assert.Equal("!(bind.packageVersion.test.msi)", previousVersion.AsString());
65
66 var msiTuple = section.Tuples.OfType<WixBundlePackageTuple>().Single();
67 Assert.Equal("test.msi", msiTuple.Id.Id);
68 } 54 }
69 } 55 }
70 56