public void Format_Should_Return_String_Representation_Of_LogEntry()
        {
            var logEntry = new WeblogEntry(new Mock <HttpContextBase>().Object, "Dummy Message", "All", TraceEventType.Information, null, null, null);
            var response = _formatter.Format(logEntry);

            Assert.True(response.Length > 0);
        }