forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsProvider.cs
69 lines (59 loc) · 1.81 KB
/
SettingsProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices;
using System.Collections.Generic;
using System.Xml;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface;
#if !WINDOWS_UWP
using ISettingsProvider = Interface.ISettingsProvider;
#endif
/// <summary>
/// Class to read settings from the runsettings xml for the desktop.
/// </summary>
public class MSTestSettingsProvider : ISettingsProvider
{
#if !WINDOWS_UWP && !PORTABLE
/// <summary>
/// Member variable for Adapter settings
/// </summary>
private static MSTestAdapterSettings s_settings;
/// <summary>
/// Gets settings provided to the adapter.
/// </summary>
public static MSTestAdapterSettings Settings
{
get
{
s_settings ??= new MSTestAdapterSettings();
return s_settings;
}
}
/// <summary>
/// Reset the settings to its default.
/// </summary>
public static void Reset()
{
s_settings = null;
}
#endif
/// <summary>
/// Load the settings from the reader.
/// </summary>
/// <param name="reader">Reader to load the settings from.</param>
public void Load(XmlReader reader)
{
#if !WINDOWS_UWP && !PORTABLE
ValidateArg.NotNull(reader, "reader");
s_settings = MSTestAdapterSettings.ToSettings(reader);
#endif
}
public IDictionary<string, object> GetProperties(string source)
{
#if !WINDOWS_UWP && !PORTABLE
return TestDeployment.GetDeploymentInformation(source);
#else
return new Dictionary<string, object>();
#endif
}
}