blob: 9176096d1719ee8591d6ff9dca29a5146a72e536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using DotNetOpenId.Test.Hosting;
using System.Net;
namespace DotNetOpenId.Test.RelyingParty {
[TestFixture]
public class OpenIdTextBoxTest {
[Test]
public void TextBoxAppears() {
string html = TestSupport.Host.ProcessRequest(TestSupport.ConsumerPage);
Assert.IsTrue(html.Contains("<input "));
}
}
}
|