11 lines
263 B
C#
11 lines
263 B
C#
namespace SuiteLink.Client.Tests.Fixtures;
|
|
|
|
internal static class FixtureBytes
|
|
{
|
|
public static byte[] Read(string fileName)
|
|
{
|
|
var path = Path.Combine(AppContext.BaseDirectory, "Fixtures", fileName);
|
|
return File.ReadAllBytes(path);
|
|
}
|
|
}
|