Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7745881
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T10:08:05+00:00 2026-06-01T10:08:05+00:00

When extracting web service calls into an abstraction so they can easily be tested

  • 0

When extracting web service calls into an abstraction so they can easily be tested without being reliant on the web service being online how can I abstract event handlers called automatically by the service? The issue I’m running into is that since the API I’m using (EWS) has every class internaled so I can’t create them. This turns into an issue when unit testing because I can’t say for example, when the event gets fired that it should do x, y and z.

How can I extract these event handlers with my own so I can easily mock them?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T10:08:07+00:00Added an answer on June 1, 2026 at 10:08 am

    You’ll need to wrap the class in your own class supporting an interface. For example if your service usage looks like this:

    var service = new SomeService();
    service.SomeEvent =+ (o, e) => DoSomething(e);
    service.DoStuff();
    

    You’ll create an interface:

    public interface ISomeService
    {
        event EventHandler SomeEvent;
        void DoStuff();
    }
    

    And your implementing class:

    public class SomeServiceWrapper : ISomeService
    {
        private readonly SomeService _containedService;
    
        public event EventHandler SomeEvent;
    
        public SomeServiceWrapper()
        {
            _containedService = new SomeService();
            _containedService.SomeEvent += (o, e) => RaiseSomeEvent(e);
        }
    
        public void DoStuff()
        {
            _containedService.DoStuff();
        }
    
        private void RaiseSomeEvent(EventArgs e)
        {
            EventHandler evt = SomeEvent;
            if (evt != null)
            {
                evt(this, e);
            }
        }
    }
    

    Then you can create a dummy ISomeService via mocking or your own dummy class, and you use the ISomeService instance SomeServiceWrapper in production.

    Hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am extracting data from web service(xml file) using NSXmlParser.How can I write to
I am looking for a web service which can can extract important keywords from
I have used this code for extracting urls from web page.But in the line
On extracting some html from a web page, I have some elements containing text
I'm building a java web media-scraping application for extracting content from a variety of
I am looking for a reliable way of extracting text given the web address,
I commonly find myself extracting common behavior out of classes into helper/utility classes that
I am extracting a pdf into images / swf and text with the help
I'm extracting files from zip and rar archives into raw buffers. I created the
I am extracting content from a web page using JS/JQuery and want to write

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.