File tree 2 files changed +26
-0
lines changed
src/Platform/Microsoft.Testing.Platform/Configurations
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 5
5
6
6
namespace Microsoft . Testing . Platform . Configurations ;
7
7
8
+ /// <summary>
9
+ /// Provides extension methods for the IConfiguration interface.
10
+ /// </summary>
8
11
public static class ConfigurationExtensions
9
12
{
13
+ /// <summary>
14
+ /// Gets the test result directory from the configuration.
15
+ /// </summary>
16
+ /// <param name="configuration">The configuration.</param>
17
+ /// <returns>The test result directory.</returns>
10
18
public static string GetTestResultDirectory ( this IConfiguration configuration )
11
19
{
12
20
string ? resultDirectory = configuration [ PlatformConfigurationConstants . PlatformResultDirectory ] ;
13
21
ArgumentGuard . IsNotNull ( resultDirectory ) ;
14
22
return resultDirectory ;
15
23
}
16
24
25
+ /// <summary>
26
+ /// Gets the current working directory from the configuration.
27
+ /// </summary>
28
+ /// <param name="configuration">The configuration.</param>
29
+ /// <returns>The current working directory.</returns>
17
30
public static string GetCurrentWorkingDirectory ( this IConfiguration configuration )
18
31
{
19
32
string ? workingDirectory = configuration [ PlatformConfigurationConstants . PlatformCurrentWorkingDirectory ] ;
20
33
ArgumentGuard . IsNotNull ( workingDirectory ) ;
21
34
return workingDirectory ;
22
35
}
23
36
37
+ /// <summary>
38
+ /// Gets the test host working directory from the configuration.
39
+ /// </summary>
40
+ /// <param name="configuration">The configuration.</param>
41
+ /// <returns>The test host working directory.</returns>
24
42
public static string GetTestHostWorkingDirectory ( this IConfiguration configuration )
25
43
{
26
44
string ? workingDirectory = configuration [ PlatformConfigurationConstants . PlatformTestHostWorkingDirectory ] ;
Original file line number Diff line number Diff line change 3
3
4
4
namespace Microsoft . Testing . Platform . Configurations ;
5
5
6
+ /// <summary>
7
+ /// Represents a configuration interface.
8
+ /// </summary>
6
9
public interface IConfiguration
7
10
{
11
+ /// <summary>
12
+ /// Gets or sets the value associated with the specified key.
13
+ /// </summary>
14
+ /// <param name="key">The key of the value to get or set.</param>
15
+ /// <returns>The value associated with the specified key.</returns>
8
16
string ? this [ string key ] { get ; }
9
17
}
You can’t perform that action at this time.
0 commit comments