public void ClassWithExtensibileNotifiers_NoNotifiersInvoked()
        {
            var impl = new MyImplementation();

            impl.DoSomething();

            // Doesn't write summary
        }
Beispiel #2
0
        public void ClassWithExtensibileNotifiers_InvokesSuppliedOnes()
        {
            var impl = new MyImplementation(new[] { new WriteItOut(), new WriteItOut() });

            impl.DoSomething();

            // writes to debug at the end.
        }
        public void ClassWithExtensibileNotifiers_InvokesSuppliedOnes()
        {
            var impl = new MyImplementation(new[] {new WriteItOut(), new WriteItOut()});

            impl.DoSomething();

            // writes to debug at the end.
        }
Beispiel #4
0
        public void ClassWithExtensibileNotifiers_NoNotifiersInvoked()
        {
            var impl = new MyImplementation();

            impl.DoSomething();

            // Doesn't write summary
        }