blob: 83874ba02e863cecd6354d2aa0ec7b370b2a5691 [file] [log] [blame]
using System.IO;
namespace Casbin.Benchmark
{
public static class TestHelper
{
public static string GetTestFilePath(string fileName)
{
return Path.Combine("Examples", fileName);
}
}
}