Skip to content

Commit d66a5f8

Browse files
authored
Document configuration public APIs (#2291)
1 parent 1357246 commit d66a5f8

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

src/Platform/Microsoft.Testing.Platform/Configurations/ConfigurationExtensions.cs

+18
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,40 @@
55

66
namespace Microsoft.Testing.Platform.Configurations;
77

8+
/// <summary>
9+
/// Provides extension methods for the IConfiguration interface.
10+
/// </summary>
811
public static class ConfigurationExtensions
912
{
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>
1018
public static string GetTestResultDirectory(this IConfiguration configuration)
1119
{
1220
string? resultDirectory = configuration[PlatformConfigurationConstants.PlatformResultDirectory];
1321
ArgumentGuard.IsNotNull(resultDirectory);
1422
return resultDirectory;
1523
}
1624

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>
1730
public static string GetCurrentWorkingDirectory(this IConfiguration configuration)
1831
{
1932
string? workingDirectory = configuration[PlatformConfigurationConstants.PlatformCurrentWorkingDirectory];
2033
ArgumentGuard.IsNotNull(workingDirectory);
2134
return workingDirectory;
2235
}
2336

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>
2442
public static string GetTestHostWorkingDirectory(this IConfiguration configuration)
2543
{
2644
string? workingDirectory = configuration[PlatformConfigurationConstants.PlatformTestHostWorkingDirectory];

src/Platform/Microsoft.Testing.Platform/Configurations/IConfiguration.cs

+8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33

44
namespace Microsoft.Testing.Platform.Configurations;
55

6+
/// <summary>
7+
/// Represents a configuration interface.
8+
/// </summary>
69
public interface IConfiguration
710
{
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>
816
string? this[string key] { get; }
917
}

0 commit comments

Comments
 (0)