diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth.Test/TestBase.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/DotNetOpenAuth.Test/TestBase.cs b/src/DotNetOpenAuth.Test/TestBase.cs index ff96d1a..8aeca2d 100644 --- a/src/DotNetOpenAuth.Test/TestBase.cs +++ b/src/DotNetOpenAuth.Test/TestBase.cs @@ -18,8 +18,17 @@ namespace DotNetOpenAuth.Test { /// The base class that all test classes inherit from. /// </summary> public class TestBase { + private MessageDescriptionCollection messageDescriptions = new MessageDescriptionCollection(); + + /// <summary> + /// Gets the logger that tests should use. + /// </summary> + internal static ILog TestLogger { + get { return TestUtilities.TestLogger; } + } + /// <summary> - /// The full path to the directory that contains the test ASP.NET site. + /// Gets the full path to the directory that contains the test ASP.NET site. /// </summary> internal string TestWebDirectory { get { @@ -33,15 +42,6 @@ namespace DotNetOpenAuth.Test { } } - private MessageDescriptionCollection messageDescriptions = new MessageDescriptionCollection(); - - /// <summary> - /// Gets the logger that tests should use. - /// </summary> - internal static ILog TestLogger { - get { return TestUtilities.TestLogger; } - } - internal MessageDescriptionCollection MessageDescriptions { get { return this.messageDescriptions; } } |