Ejemplo n.º 1
0
        public void ShouldCallDatabaseToGetAllCustomers()
        {
            var mockDatabase = new Mock <ICustomerDb>();
            var sut          = new Services.CustomerService(mockDatabase.Object);

            sut.GetAll();

            mockDatabase.Verify(db => db.GetAll(), Times.Once);
        }