//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.Test { using System; using System.Collections.Generic; using System.Linq; using log4net; /// /// An assortment of methods useful for testing. /// internal class TestUtilities { /// /// The logger that tests should use. /// internal static readonly ILog TestLogger = LogManager.GetLogger("DotNetOpenAuth.Test"); } }