Exemplo n.º 1
0
        public void ShouldSerializeAggregateExceptionToString()
        {
            var e = new AggregateException("test", new[] {
                new System.Exception("test2"),
                new System.Exception("test3")
            });

            e.AsString().Should().ContainAll("test", "test2", "test3");
        }