public void ProxyLogEntryData()
        {
            LogEntry entry   = CommonUtil.CreateLogEntry();
            int      eventId = 1;

            entry.EventId = eventId;
            entry.Categories.Add(CommonUtil.ServiceModelCategory);
            proxy.TraceData(new TraceEventCache(), CommonUtil.ServiceModelCategory, TraceEventType.Error, eventId, entry);

            LogEntry lastEntry = MockTraceListener.LastEntry;

            Assert.IsNotNull(lastEntry);
            CommonUtil.AssertLogEntries(lastEntry, entry);
        }