summaryrefslogtreecommitdiff
path: root/src/burn/test/BurnUnitTest/TestRegistryFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/burn/test/BurnUnitTest/TestRegistryFixture.h')
-rw-r--r--src/burn/test/BurnUnitTest/TestRegistryFixture.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/burn/test/BurnUnitTest/TestRegistryFixture.h b/src/burn/test/BurnUnitTest/TestRegistryFixture.h
new file mode 100644
index 00000000..283efe42
--- /dev/null
+++ b/src/burn/test/BurnUnitTest/TestRegistryFixture.h
@@ -0,0 +1,30 @@
1#pragma once
2// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
3
4namespace WixBuildTools
5{
6namespace TestSupport
7{
8 using namespace System;
9
10 public ref class TestRegistryFixture : IDisposable
11 {
12 private:
13 String^ rootPath;
14 String^ hkcuPath;
15 String^ hklmPath;
16 public:
17 TestRegistryFixture();
18
19 ~TestRegistryFixture();
20
21 void SetUp();
22
23 void TearDown();
24
25 String^ GetDirectHkcuPath(... array<String^>^ paths);
26
27 String^ GetDirectHklmPath(... array<String^>^ paths);
28 };
29}
30}