using CoatiSoftware.SourcetrailPlugin.Utility; using VCProjectEngineWrapper; namespace CoatiSoftware.SourcetrailPlugin.IntegrationTests.Helpers { class TestPathResolver : IPathResolver { public override string GetCompilationDatabaseFilePath() { return ""; } protected override string DoGetAsAbsoluteCanonicalPath(string path, IVCProjectWrapper project) { return "/" + path; } protected override string ResolveVsMacro(string potentialMacro, IVCConfigurationWrapper vcProjectConfig) { return ""; } } }