using System.IO; namespace SampleLibrary { public static class Utils { /// /// Utility method to get models from local folder rather than an absolute path /// /// /// public static string GetTestModel(string filename) { var path = Path.Combine(Directory.GetCurrentDirectory(), "..", "..", "TestModels", filename); return path; } } }