public void TestInitialize()
        {
            var arguments = new Dictionary <string, string>
            {
                { "EventCounterIntervalSec", ".1" }
            };

            listener = new PeachtreeBusEventListener();
            listener.EnableEvents(
                PerfCounters.Instance(),
                EventLevel.LogAlways,
                EventKeywords.All,
                arguments);
        }
 public void TestCleanup()
 {
     listener.Dispose();
     listener = null;
 }