UrlTestUtils.cs 344 B

123456789101112131415161718
  1. using System;
  2. using System.Web;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace GHTTests
  6. {
  7. public class UrlTestUtils
  8. {
  9. public static string FixUrlForDirectoriesTest (string url)
  10. {
  11. if (url == null)
  12. return null;
  13. return url.Replace (HttpContext.Current.Request.ApplicationPath, "root");
  14. }
  15. }
  16. }