mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-01-24 05:42:10 +08:00
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4038902
19 lines
485 B
C#
19 lines
485 B
C#
using System.Web;
|
|
|
|
namespace Orchard.Web.Tests.Stubs {
|
|
public class StubRequest : HttpRequestBase {
|
|
private readonly string relativeUrl;
|
|
|
|
public StubRequest(string relativeUrl) {
|
|
this.relativeUrl = relativeUrl;
|
|
}
|
|
|
|
public override string AppRelativeCurrentExecutionFilePath {
|
|
get { return relativeUrl; }
|
|
}
|
|
|
|
public override string PathInfo {
|
|
get { return ""; }
|
|
}
|
|
}
|
|
} |