diff options
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration')
3 files changed, 4 insertions, 4 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs b/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs index 8e4bcd54..37ff1839 100644 --- a/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs | |||
| @@ -98,7 +98,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 98 | var section = intermediate.Sections.Single(); | 98 | var section = intermediate.Sections.Single(); |
| 99 | 99 | ||
| 100 | var property = section.Tuples.OfType<PropertyTuple>().Where(p => p.Id.Id == "ExampleProperty").Single(); | 100 | var property = section.Tuples.OfType<PropertyTuple>().Where(p => p.Id.Id == "ExampleProperty").Single(); |
| 101 | Assert.Equal("ExampleProperty", property.Property); | 101 | Assert.Equal("ExampleProperty", property.Id.Id); |
| 102 | Assert.Equal("test", property.Value); | 102 | Assert.Equal("test", property.Value); |
| 103 | } | 103 | } |
| 104 | } | 104 | } |
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs index 0aabc5a9..f28ec7ce 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs | |||
| @@ -534,7 +534,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 534 | var intermediate = Intermediate.Load(Path.Combine(intermediateFolder, @"test.wir")); | 534 | var intermediate = Intermediate.Load(Path.Combine(intermediateFolder, @"test.wir")); |
| 535 | var section = intermediate.Sections.Single(); | 535 | var section = intermediate.Sections.Single(); |
| 536 | 536 | ||
| 537 | var platformSummary = section.Tuples.OfType<_SummaryInformationTuple>().Single(s => s.PropertyId == 7); | 537 | var platformSummary = section.Tuples.OfType<SummaryInformationTuple>().Single(s => s.PropertyId == SumaryInformationType.PlatformAndLanguage); |
| 538 | Assert.Equal("x64;1033", platformSummary.Value); | 538 | Assert.Equal("x64;1033", platformSummary.Value); |
| 539 | } | 539 | } |
| 540 | } | 540 | } |
diff --git a/src/test/WixToolsetTest.CoreIntegration/WixiplFixture.cs b/src/test/WixToolsetTest.CoreIntegration/WixiplFixture.cs index 391b7021..d915d02b 100644 --- a/src/test/WixToolsetTest.CoreIntegration/WixiplFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/WixiplFixture.cs | |||
| @@ -130,7 +130,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 130 | var path = binary[BinaryTupleFields.Data].AsPath().Path; | 130 | var path = binary[BinaryTupleFields.Data].AsPath().Path; |
| 131 | Assert.Contains("Example.Extension", path); | 131 | Assert.Contains("Example.Extension", path); |
| 132 | Assert.EndsWith(@"\0", path); | 132 | Assert.EndsWith(@"\0", path); |
| 133 | Assert.Equal(@"BinFromWir", binary[BinaryTupleFields.Name].AsString()); | 133 | Assert.Equal(@"BinFromWir", binary.Id.Id); |
| 134 | } | 134 | } |
| 135 | } | 135 | } |
| 136 | } | 136 | } |
| @@ -185,7 +185,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 185 | var path = binary[BinaryTupleFields.Data].AsPath().Path; | 185 | var path = binary[BinaryTupleFields.Data].AsPath().Path; |
| 186 | Assert.Contains("Example.Extension", path); | 186 | Assert.Contains("Example.Extension", path); |
| 187 | Assert.EndsWith(@"\0", path); | 187 | Assert.EndsWith(@"\0", path); |
| 188 | Assert.Equal(@"BinFromWir", binary[BinaryTupleFields.Name].AsString()); | 188 | Assert.Equal(@"BinFromWir", binary.Id.Id); |
| 189 | } | 189 | } |
| 190 | } | 190 | } |
| 191 | } | 191 | } |
