Click here to Skip to main content
15,881,831 members
Articles / Programming Languages / C#

Visual studio 2012 Fakes

Rate me:
Please Sign up or sign in to vote.
4.96/5 (86 votes)
11 Nov 2013CPOL14 min read 158.2K   2.5K   129  
In this article we will make a deep dive into VS 2012 Fakes.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MiddleLayer
{
    public interface IEmailLibrary
    {
        bool SendEmail();
    }

    public class EmailLibrary : IEmailLibrary
    {
        public bool SendEmail()
        {
            throw new Exception("Email server is not configured");
            return true;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder Just Compile
India India
Learning is fun but teaching is awesome.

Who I am? Trainer + consultant + Developer/Architect + Director of Just Compile

My Company - Just Compile

I can be seen in, @sukeshmarla or Facebook

Comments and Discussions