public void SetUp()
        {
            this.mailDispatcher = A.Fake<IMailDispatcher>();

            this.testee = new NewsletterService(new SimpleCustomerFinder(this.mailDispatcher));
        }
        public void SetUp()
        {
            this.customerFinder = A.Fake<ICustomerFinder>();

            this.testee = new NewsletterService(this.customerFinder);
        }
Exemple #3
0
        public void SetUp()
        {
            this.mailDispatcher = A.Fake <IMailDispatcher>();

            this.testee = new NewsletterService(new SimpleCustomerFinder(this.mailDispatcher));
        }
        public void SetUp()
        {
            this.customerFinder = A.Fake <ICustomerFinder>();

            this.testee = new NewsletterService(this.customerFinder);
        }