public void Start(ISpecContext context)
        {
            _records.Clear();
            Errors = new BusErrors();

            _context = context;
        }
예제 #2
0
        public void Start(ISpecContext context, BusErrors errors)
        {
            _errors  = errors;
            _report  = new TransportLoggingReport();
            _context = context;

            _context.Reporting.Log(_report);
        }
예제 #3
0
 public StorytellerMessageLogger(MessageHistory history, ILoggerFactory factory, IMetrics metrics) : base(history, factory, metrics)
 {
     _history = history;
     Errors   = new BusErrors();
 }