Click here to Skip to main content
15,889,839 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.7K   2.5K   129  
In this article we will make a deep dive into VS 2012 Fakes.
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using DateTimeUtlities;
using System.Fakes;
using Microsoft.QualityTools.Testing.Fakes;
namespace YearUtilitiesTest
{
    [TestClass]
    public class UnitTest1
    {
        [TestMethod]
        public void TestForLastDay()
        {
            //Arrange
            YearUtilities yearUtilities = new YearUtilities();

            //Act
            bool CurrenrResult = false;
            using (ShimsContext.Create())
            {
                ShimDateTime.NowGet = () => new DateTime(2012, 12,31);
                CurrenrResult =yearUtilities.IsTodayLastDateOfYear();            
            }
            //Assert
            Assert.AreEqual<bool>(true, CurrenrResult);
        }

        [TestMethod]
        public void TestForNotLastDay()
        {
            //Arrange
            YearUtilities yearUtilities = new YearUtilities();

            //Act
            bool CurrenrResult = false;
            using (ShimsContext.Create())
            {
                ShimDateTime.NowGet = () => new DateTime(2012, 12,15);
                CurrenrResult = yearUtilities.IsTodayLastDateOfYear();
            }


            //Assert
            Assert.AreEqual<bool>(false, CurrenrResult);
        }
    }
}

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