Skip to content

Instantly share code, notes, and snippets.

@SlyNet
Created September 26, 2011 08:34
Show Gist options
  • Save SlyNet/1241862 to your computer and use it in GitHub Desktop.
Save SlyNet/1241862 to your computer and use it in GitHub Desktop.
Unit testing mocking
/// <summary>
/// Used for mocking utility method in unit tests.
/// </summary>
internal Func<string, string> ToAppRelative = (relativePath) => VirtualPathUtility.ToAppRelative(relativePath);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment