views:

61

answers:

1

Hi, I am trying to get to grips with mocking and ReSharper by watching this demo http://www.bestechvideos.com/2008/06/08/dimecasts-net-introduction-to-mocking-with-moq I'm sure I followed the code correctly but I'm getting errors. Could you give me some pointers as to were I'm going wrong?

errors:-class name is not valid at this point errors:-send email is not implemented

using System;
using System.Collections.Generic; // for the Dictionary
using NUnit.Framework;
using Moq;


namespace MvcUnitTst2.Tests
{
[TestFixture]
public class IntoToMoq
{
    [Test]
    public void NonMock()
    {

        var emailService = new EmailService();
        var emailer = new Emailer(emailService);
        emailer.SendBatchEmails();

    }
}

public class Emailer
{
    public Emailer(IEmailService emailService)
    {
        // error here:- class name is not valid at this point
        MvcUnitTst2.Tests.EmailService = emailService;
    }
    public void SendBatchEmails()
    {
        // build a list of emails
        // code below fails
        //Dictionary<string, string> emails = new Dictionary<string, string>
        //                                        {
        //                                            {"[email protected]","Hello 1"},
        //                                            {"[email protected]","Hello 2"},
        //                                            {"[email protected]","Hello 3"},
        //                                            {"[email protected]","Hello 4"}
        //                                        };

        // use this instead
        var emails = new Dictionary<string, string>
                                                {
                                                    {"[email protected]","Hello 1"},
                                                    {"[email protected]","Hello 2"},
                                                    {"[email protected]","Hello 3"},
                                                    {"[email protected]","Hello 4"}
                                                };                                       



        foreach (KeyValuePair<string, string> email in emails)
        {
            if(!MvcUnitTst2.Tests.EmailService.SendEmail(email.Key,email.Value))
            {
                throw new Exception("Some message here");

            }
        }

    }



    private IEmailService EmailService { get; set; }
}


// the error is here:- send email is not implemented
    public class EmailService: IEmailService
    {
        public static bool SendEmail(string emailAddress,string message)
        {
            return false;
        }
    }

public interface IEmailService
{
    bool SendEmail(string emailAddress, string message);
}

}

+1  A: 

You have your class implementing the IEmailService interface, but you have SendEmail marked as static.

Why doesn't c# allow static methods to implement an interface

Also, here you're trying to assign an instance to a class.

// error here:- class name is not valid at this point
MvcUnitTst2.Tests.EmailService = emailService;

Here's the fixed up code for these issues:

using System;
using System.Collections.Generic; // for the Dictionary
using NUnit.Framework;
using Moq;


namespace MvcUnitTst2.Tests
{
[TestFixture]
public class IntoToMoq
{
    [Test]
    public void NonMock()
    {

        var emailService = new EmailService();
        var emailer = new Emailer(emailService);
        emailer.SendBatchEmails();

    }
}

public class Emailer
{
    public Emailer(IEmailService emailService)
    {
        this.EmailService = emailService;
    }
    public void SendBatchEmails()
    {
        // build a list of emails
        // code below fails
        //Dictionary<string, string> emails = new Dictionary<string, string>
        //                                        {
        //                                            {"[email protected]","Hello 1"},
        //                                            {"[email protected]","Hello 2"},
        //                                            {"[email protected]","Hello 3"},
        //                                            {"[email protected]","Hello 4"}
        //                                        };

        // use this instead
        var emails = new Dictionary<string, string>
                                                {
                                                    {"[email protected]","Hello 1"},
                                                    {"[email protected]","Hello 2"},
                                                    {"[email protected]","Hello 3"},
                                                    {"[email protected]","Hello 4"}
                                                };                                       



        foreach (KeyValuePair<string, string> email in emails)
        {
            if(!this.EmailService.SendEmail(email.Key,email.Value))
            {
                throw new Exception("Some message here");

            }
        }

    }



    private IEmailService EmailService { get; set; }
}


    public class EmailService: IEmailService
    {
        public bool SendEmail(string emailAddress,string message)
        {
            return false;
        }
    }

public interface IEmailService
{
    bool SendEmail(string emailAddress, string message);
}
Sam T.
Thanks Sam,That has help me a lot :)The intelisense in ReSharper put the MvcUnitTst2.Tests. in front of EmailService. So like a fool I took the offered code. That forced me to add the static... and from there on I was lost :(
Hunt
If this answered your question please mark it as accepted. A higher accept rate will help you get your questions answered quickly.Check this meta topic:http://meta.stackoverflow.com/questions/5234/accepting-answers-what-is-it-all-about
Sam T.