using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
namespace DotNetOpenId.Test.Extensions {
[SetUpFixture]
public class ExtensionsTestSetup {
[SetUp]
public void SetUp() {
if (!UntrustedWebRequest.WhitelistHosts.Contains("localhost"))
UntrustedWebRequest.WhitelistHosts.Add("localhost");
}
}
}