I'm new to FakeItEasy and mocking in general. I created a Visual Studio 2010 C# class library project. I added references to the NUnit DLL and the FakeItEasy DLL. I added "using" statements for both, then attempted to try some of the documentation examples. My code is:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FakeItEasy.Core;
// ...
using NUnit.Framework;
namespace TestLib
{
[TestFixture]
public class Tester
{
[Test]
public void SomeTest()
{
ISomething mockThing = A.Fake<ISomething>();
/*
...
*/
}
}
}
I get errors "The type or namespace name 'ISomething' could not be found" and "The name 'A' does not exist in the current context."
What am I missing?