aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/WixToolsetTest.Data/SerializeFixture.cs10
-rw-r--r--src/test/WixToolsetTest.Data/WixToolsetTest.Data.csproj4
2 files changed, 7 insertions, 7 deletions
diff --git a/src/test/WixToolsetTest.Data/SerializeFixture.cs b/src/test/WixToolsetTest.Data/SerializeFixture.cs
index ac2f5454..856bcda7 100644
--- a/src/test/WixToolsetTest.Data/SerializeFixture.cs
+++ b/src/test/WixToolsetTest.Data/SerializeFixture.cs
@@ -23,7 +23,7 @@ namespace WixToolsetTest.Data
23 { 23 {
24 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), 24 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"),
25 Directory_ = "TestFolder", 25 Directory_ = "TestFolder",
26 Attributes = 2, 26 Location = ComponentLocation.Either,
27 }); 27 });
28 28
29 var intermediate = new Intermediate("TestIntermediate", new[] { section }, null, null); 29 var intermediate = new Intermediate("TestIntermediate", new[] { section }, null, null);
@@ -38,7 +38,7 @@ namespace WixToolsetTest.Data
38 Assert.Equal("TestComponent", tuple.Id.Id); 38 Assert.Equal("TestComponent", tuple.Id.Id);
39 Assert.Equal(AccessModifier.Public, tuple.Id.Access); 39 Assert.Equal(AccessModifier.Public, tuple.Id.Access);
40 Assert.Equal("TestFolder", tuple.Directory_); 40 Assert.Equal("TestFolder", tuple.Directory_);
41 Assert.Equal(2, tuple.Attributes); 41 Assert.Equal(ComponentLocation.Either, tuple.Location);
42 } 42 }
43 43
44 [Fact] 44 [Fact]
@@ -178,8 +178,8 @@ namespace WixToolsetTest.Data
178 178
179 var controls = new[] 179 var controls = new[]
180 { 180 {
181 new LocalizedControl("TestDlg1", "TestControl1", 10, 10, 100, 100, 0, null), 181 new LocalizedControl("TestDlg1", "TestControl1", 10, 10, 100, 100, false, false, false, null),
182 new LocalizedControl("TestDlg1", "TestControl2", 100, 90, 50, 70, 0, "localized"), 182 new LocalizedControl("TestDlg1", "TestControl2", 100, 90, 50, 70, false, false, false, "localized"),
183 }; 183 };
184 184
185 var localizations = new[] 185 var localizations = new[]
@@ -193,7 +193,7 @@ namespace WixToolsetTest.Data
193 { 193 {
194 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), 194 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"),
195 Directory_ = "TestFolder", 195 Directory_ = "TestFolder",
196 Attributes = 2, 196 Location = ComponentLocation.Either,
197 }); 197 });
198 198
199 var intermediate = new Intermediate("TestIntermediate", new[] { section }, localizations.ToDictionary(l => l.Culture), null); 199 var intermediate = new Intermediate("TestIntermediate", new[] { section }, localizations.ToDictionary(l => l.Culture), null);
diff --git a/src/test/WixToolsetTest.Data/WixToolsetTest.Data.csproj b/src/test/WixToolsetTest.Data/WixToolsetTest.Data.csproj
index e81b4f6f..d35ba853 100644
--- a/src/test/WixToolsetTest.Data/WixToolsetTest.Data.csproj
+++ b/src/test/WixToolsetTest.Data/WixToolsetTest.Data.csproj
@@ -12,8 +12,8 @@
12 12
13 <ItemGroup> 13 <ItemGroup>
14 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> 14 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
15 <PackageReference Include="xunit" Version="2.4.0" /> 15 <PackageReference Include="xunit" Version="2.4.1" />
16 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> 16 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" PrivateAssets="All" />
17 </ItemGroup> 17 </ItemGroup>
18 18
19</Project> 19</Project>