diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-11-24 19:44:57 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-11-24 19:44:57 -0800 |
commit | 143d80b2ce76ef6eee4bddda9039a0b0f9673356 (patch) | |
tree | bcbf7ee6e089d85a3e4ee834871b5edb1a8a43fa /src/DotNetOpenAuth.Test/OpenId/UI/UITestSupport.cs | |
parent | e81621138e95624e12db5667c5720cde1f0475d9 (diff) | |
download | DotNetOpenAuth-143d80b2ce76ef6eee4bddda9039a0b0f9673356.zip DotNetOpenAuth-143d80b2ce76ef6eee4bddda9039a0b0f9673356.tar.gz DotNetOpenAuth-143d80b2ce76ef6eee4bddda9039a0b0f9673356.tar.bz2 |
Added discovery and around 60 tests. The discovery and a few other tests still fail, but we're making progress.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/UI/UITestSupport.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/UI/UITestSupport.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/UI/UITestSupport.cs b/src/DotNetOpenAuth.Test/OpenId/UI/UITestSupport.cs new file mode 100644 index 0000000..da18fa9 --- /dev/null +++ b/src/DotNetOpenAuth.Test/OpenId/UI/UITestSupport.cs @@ -0,0 +1,21 @@ +namespace DotNetOAuth.Test.OpenId.UI { + using DotNetOpenAuth.Test.Hosting; + + ////[SetUpFixture] + public class UITestSupport { + internal static AspNetHost Host { get; private set; } + + ////[SetUp] + ////public void SetUp() { + //// Host = AspNetHost.CreateHost(TestSupport.TestWebDirectory); + ////} + + ////[TearDown] + ////public void TearDown() { + //// if (Host != null) { + //// Host.CloseHttp(); + //// Host = null; + //// } + ////} + } +} |