diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-17 19:16:33 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-17 19:16:33 -0800 |
commit | 9a77154c54439bacd06938e2c0624c69d4e48c69 (patch) | |
tree | 3de2b375f46f75962184da906cb37b9776f1734e | |
parent | 2779e324bada2f8c38175d800925a6336fdc5378 (diff) | |
download | DotNetOpenAuth-9a77154c54439bacd06938e2c0624c69d4e48c69.zip DotNetOpenAuth-9a77154c54439bacd06938e2c0624c69d4e48c69.tar.gz DotNetOpenAuth-9a77154c54439bacd06938e2c0624c69d4e48c69.tar.bz2 |
Fixed StyleCop messages.
-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; } } |