9 lines
214 B
C#
9 lines
214 B
C#
namespace JdeScoping.Ui.Tests.Support;
|
|
|
|
internal static class TestDataPaths
|
|
{
|
|
public static string Get(string fileName)
|
|
{
|
|
return Path.Combine(AppContext.BaseDirectory, "TestData", fileName);
|
|
}
|
|
} |