summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/TestUtilities.cs
diff options
context:
space:
mode:
authorDavid Christiansen <DavidChristiansen@users.noreply.github.com>2015-01-05 09:33:24 +0000
committerDavid Christiansen <DavidChristiansen@users.noreply.github.com>2015-01-05 09:33:24 +0000
commit3770a51d19a04be18ade75f59e0ff1687010a130 (patch)
tree240382c976672ed421d529860117e37677328f02 /src/DotNetOpenAuth.Test/TestUtilities.cs
parent7574924b2b5c810b7c00328f04f506f28da3f2ec (diff)
parenta14dcb800b25d1b0477ab123b6865d90865f96f0 (diff)
downloadDotNetOpenAuth-3770a51d19a04be18ade75f59e0ff1687010a130.zip
DotNetOpenAuth-3770a51d19a04be18ade75f59e0ff1687010a130.tar.gz
DotNetOpenAuth-3770a51d19a04be18ade75f59e0ff1687010a130.tar.bz2
Merge pull request #359 from DavidChristiansen/develop
Closes #356, Closes #357, Closes #358
Diffstat (limited to 'src/DotNetOpenAuth.Test/TestUtilities.cs')
-rw-r--r--src/DotNetOpenAuth.Test/TestUtilities.cs18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/DotNetOpenAuth.Test/TestUtilities.cs b/src/DotNetOpenAuth.Test/TestUtilities.cs
index 3d3e151..f56a408 100644
--- a/src/DotNetOpenAuth.Test/TestUtilities.cs
+++ b/src/DotNetOpenAuth.Test/TestUtilities.cs
@@ -5,22 +5,20 @@
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test {
- using System;
- using System.Collections.Generic;
- using System.Collections.Specialized;
- using System.Linq;
- using System.Net;
- using log4net;
- using Validation;
-
- /// <summary>
+ using System.Collections.Specialized;
+
+ using DotNetOpenAuth.Logging;
+
+ using Validation;
+
+ /// <summary>
/// An assortment of methods useful for testing.
/// </summary>
internal static class TestUtilities {
/// <summary>
/// The logger that tests should use.
/// </summary>
- internal static readonly ILog TestLogger = LogManager.GetLogger("DotNetOpenAuth.Test");
+ internal static readonly ILog TestLogger = LogProvider.GetLogger("DotNetOpenAuth.Test");
internal static void ApplyTo(this NameValueCollection source, NameValueCollection target) {
Requires.NotNull(source, "source");