summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-08-08 16:34:40 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2008-08-08 16:34:40 -0700
commit96cbcaec96d67236244977b0caeb0ff7ec01b749 (patch)
tree2c513c7fb123d2b9fe3ee5655fa0495343911a83 /src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs
parent3fb65cccfa1e35de45b3b42cf0f7867b77dca254 (diff)
downloadDotNetOpenAuth-96cbcaec96d67236244977b0caeb0ff7ec01b749.zip
DotNetOpenAuth-96cbcaec96d67236244977b0caeb0ff7ec01b749.tar.gz
DotNetOpenAuth-96cbcaec96d67236244977b0caeb0ff7ec01b749.tar.bz2
Moved ASP.NET engine initialization in unit tests to just the UI namespace.
Diffstat (limited to 'src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs')
-rw-r--r--src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs b/src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs
index 49d1a1e..e84625b 100644
--- a/src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs
+++ b/src/DotNetOpenId.Test/UI/TestSupportSanityTest.cs
@@ -15,7 +15,7 @@ namespace DotNetOpenId.Test.UI {
public void TestHost() {
string query = "a=b&c=d";
string body = "aa=bb&cc=dd";
- string resultHtml = TestSupport.Host.ProcessRequest(TestSupport.HostTestPage + "?" + query, body);
+ string resultHtml = UITestSupport.Host.ProcessRequest(TestSupport.HostTestPage + "?" + query, body);
Assert.IsFalse(string.IsNullOrEmpty(resultHtml));
Debug.WriteLine(resultHtml);
@@ -25,7 +25,7 @@ namespace DotNetOpenId.Test.UI {
[Test]
public void TestProviderPage() {
- string html = TestSupport.Host.ProcessRequest(TestSupport.ProviderPage);
+ string html = UITestSupport.Host.ProcessRequest(TestSupport.ProviderPage);
Assert.IsFalse(string.IsNullOrEmpty(html));
}
}