diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-08 16:54:14 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-08 16:54:14 -0700 |
commit | e66d63e39f1dc4dafaf6ac78b36b34ba49fdcad5 (patch) | |
tree | 12a29dd265e6b4bf0a0b0782cc3df78eac06e2b5 /src/DotNetOpenId.Test/TestSupport.cs | |
parent | 96cbcaec96d67236244977b0caeb0ff7ec01b749 (diff) | |
download | DotNetOpenAuth-e66d63e39f1dc4dafaf6ac78b36b34ba49fdcad5.zip DotNetOpenAuth-e66d63e39f1dc4dafaf6ac78b36b34ba49fdcad5.tar.gz DotNetOpenAuth-e66d63e39f1dc4dafaf6ac78b36b34ba49fdcad5.tar.bz2 |
Switched test library over to log4net for trace logging.
Diffstat (limited to 'src/DotNetOpenId.Test/TestSupport.cs')
-rw-r--r-- | src/DotNetOpenId.Test/TestSupport.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DotNetOpenId.Test/TestSupport.cs b/src/DotNetOpenId.Test/TestSupport.cs index 45134b5..33c8b39 100644 --- a/src/DotNetOpenId.Test/TestSupport.cs +++ b/src/DotNetOpenId.Test/TestSupport.cs @@ -14,6 +14,7 @@ using NUnit.Framework; using IProviderAssociationStore = DotNetOpenId.IAssociationStore<DotNetOpenId.AssociationRelyingPartyType>;
using ProviderMemoryStore = DotNetOpenId.AssociationMemoryStore<DotNetOpenId.AssociationRelyingPartyType>;
using DotNetOpenId.Test.UI;
+using log4net;
[SetUpFixture]
public class TestSupport {
@@ -28,6 +29,7 @@ public class TestSupport { public const string OPDefaultPage = "OPDefault.aspx";
public static Uri ReturnTo { get { return TestSupport.GetFullUrl(TestSupport.ConsumerPage); } }
public static Realm Realm { get { return new Realm(TestSupport.GetFullUrl(TestSupport.ConsumerPage).AbsoluteUri); } }
+ public readonly static ILog Logger = LogManager.GetLogger("DotNetOpenId.Test");
public enum Scenarios {
// Authentication test scenarios
|