summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId.Test/UI/OpenIdTextBoxTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenId.Test/UI/OpenIdTextBoxTest.cs')
-rw-r--r--src/DotNetOpenId.Test/UI/OpenIdTextBoxTest.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/DotNetOpenId.Test/UI/OpenIdTextBoxTest.cs b/src/DotNetOpenId.Test/UI/OpenIdTextBoxTest.cs
new file mode 100644
index 0000000..4012a05
--- /dev/null
+++ b/src/DotNetOpenId.Test/UI/OpenIdTextBoxTest.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using NUnit.Framework;
+using DotNetOpenId.Test.Hosting;
+using System.Net;
+
+namespace DotNetOpenId.Test.UI {
+ [TestFixture]
+ public class OpenIdTextBoxTest {
+ [Test]
+ public void TextBoxAppears() {
+ string html = UITestSupport.Host.ProcessRequest(TestSupport.ConsumerPage);
+ Assert.IsTrue(html.Contains("<input "));
+ }
+ }
+}