blob: 92008ad1a7efa829194dd4ac64485d67d5ed0639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//-----------------------------------------------------------------------
// <copyright file="UITestSupport.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
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;
//// }
////}
}
}
|