public void CtorCreatesValidObject3()
        {
            var policySubstitute = Substitute.For <IExceptionHandlingPolicy>();
            var policies         =
                new List <IExceptionHandlingPolicy> {
                policySubstitute, default(IExceptionHandlingPolicy)
            };
            var tested = new AggregatedExceptionHandlingPolicy(policies);

            Assert.NotNull(tested.Policies);
            Assert.Equal(1, tested.Policies.Count);
            Assert.Equal(policies[0], policySubstitute);
        }
        public void HandleExceptionRethrowsExceptionsWrappedInAggregate()
        {
            var exception        = new DllNotFoundException();
            var policySubstitute = Substitute.For <IExceptionHandlingPolicy>();

            policySubstitute.When((policy) => { policy.HandleException(Arg.Any <Exception>()); }).Do((policy) => throw new VerificationException());
            var policies = new List <IExceptionHandlingPolicy> {
                policySubstitute, default(IExceptionHandlingPolicy)
            };
            var tested = new AggregatedExceptionHandlingPolicy(policies);

            // act & assert

            Assert.Throws <AggregateException>(() => tested.HandleException(exception));
        }
        public void HandleExceptionActivatesAllNotNullPoliciesHandleException()
        {
            var exception        = new DllNotFoundException();
            var policySubstitute = Substitute.For <IExceptionHandlingPolicy>();
            var policies         = new List <IExceptionHandlingPolicy> {
                policySubstitute, default(IExceptionHandlingPolicy)
            };
            var tested = new AggregatedExceptionHandlingPolicy(policies);

            Assert.NotNull(tested.Policies);
            Assert.Equal(1, tested.Policies.Count);

            // act

            tested.HandleException(exception);

            // assert

            policySubstitute.Received(1).HandleException(exception);
        }
        public void CtorCreatesValidObject2()
        {
            var tested = new AggregatedExceptionHandlingPolicy(default(IExceptionHandlingPolicy));

            Assert.NotNull(tested.Policies);
        }