Ejemplo n.º 1
0
        public void Should_handle_case_where_stacktrace_is_null()
        {
            var p = new PluginLogger(null);

            Assert.DoesNotThrow(() =>
            {
                var args = new FirstChanceExceptionEventArgs(new COMException("blerg"));
                p.LogFirstChanceException(args);
            });
        }