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

  • Home
  • SEARCH
  • 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 3878890
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:39:50+00:00 2026-05-19T22:39:50+00:00

I have been developing a WCF project that will expose web services (HTTP-based) that

  • 0

I have been developing a WCF project that will expose web services (HTTP-based) that will be consumed by clients external to the company. I’m planning to use TFS 2010 for Continuous Integration.

I want to do continuous integration and integration testing.

my question is :

-does doing Integration tests mean that I have to create a test environment that mimics the production environment ?
-OR does it mean that I simply have to start call my WCF, Database and other objects from my unit testing tool without relying on mocks ? for example :

[TestClass]
public class ServiceIntegrationTest
{
    private static ServiceHost serviceHost;

    [ClassInitialize]
    public static void MyClassInitialize(TestContext testContext)
    {
        serviceHost = new ServiceHost(typeof(Service1), new [] { new Uri("http://127.0.0.1:8001/") });
        serviceHost.AddServiceEndpoint(typeof(IService1), new BasicHttpBinding(), "Service1");
        serviceHost.Open();
    } 

-I really don’t understand how to carry this out.
-Is there any tutorial with real world .NET (WCF) projects on how to carry this out ?

  • 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-05-19T22:39:50+00:00Added an answer on May 19, 2026 at 10:39 pm

    I’m not an expert on how to break down unit testing properly with mocks and the rest, but I can share my experience on doing integration testing with WCF / a database backend.

    Basically, we used a singleton to handle all of the startup code. In otherwords, the MyClassInitialize method would call a static method that would ensure that the service hosts / database was up and running. That way, we didn’t have to set up / tear down the backend for each set of unit tests.

    [ClassInitialize]
    public static void MyClassInitialize(TestContext testContext)
    {
        GlobalBackend.EnsureStarted();
    } 
    

    I don’t know of any examples online, you’ll likely have to do some more googling for that.

    As for what granularity to write your tests at, you talked about integration tests. That sounds like you probably want to test your service calls attached to a real database. Say you have some CRUD functionality baked into your services, one unit test (integration test in this context) might create a widget (or whatever), then do a loadWidget call to make sure the widget got created correctly.

    How much testing to do within one unit test (depending on whether you’re doing integration testing or more granular unit testing) is a subject that could fill many books.

    EDIT: You might also need to do some cleanup / shutdown of the database / services:

    MSDN Page on AssemblyCleanup attribute.

    [AssemblyCleanup()]
    public static void AssemblyCleanup()
    {
       GlobalBackend.ShutDown();
    }
    

    Of course, that can lead to just putting all of your startup code in:

    [AssemblyInitialize()]
    public static void AssemblyInit(TestContext context)
    {
          GlobalBackend.EnsureStarted();
    }
    

    So now I’m remembering more clearly – we ended up doing this in the end (less code)

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

Sidebar

Related Questions

I have been reading up on the .Net RIA Services that Microsoft is developing
I have been developing in asp.net since its existence (also classic asp before that)
I have been tasked with developing a solution that tracks changes to a database.
We have a software house developing code for us on a project, .NET Web
I've been developing a WCF web service using .NET 3.5 with IIS7 and it
People have been developing own solutions to the following problems: Consistent messaging frameworks for
I have been developing websites for a couple of years now and I almost
I have been developing a C# windows form application in XP. It all works
I have been developing with Java for several years and last six months I
Up till now I have been developing my personal and school projects at home

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.