CK.Core.Tests.CKExceptionTests.WithInnerExceptions C# (CSharp) Method

WithInnerExceptions() private method

private WithInnerExceptions ( ) : void
return void
        public void WithInnerExceptions()
        {
            Exception e = ThrowExceptionWithInner();
            var d = CKExceptionData.CreateFrom( e );
            CheckSimpleExceptionData( d, s => s == "Outer", true );
            CheckSimpleExceptionData( d.InnerException, s => s == "Inner", false );
        }