标签:
The most popular and friendly mocking framework for .NET
var mock = new Mock<ILoveThisFramework>();
// WOW! No record/replay weirdness?! :)
mock.Setup(framework => framework.DownloadExists("2.0.0.0"))
.Returns(true)
.AtMostOnce();
// Hand mock.Object as a collaborator and exercise it,
// like calling methods on it...
ILoveThisFramework lovable = mock.Object;
bool download = lovable.DownloadExists("2.0.0.0");
// Verify that the given method was indeed called with the expected value
mock.Verify(framework => framework.DownloadExists("2.0.0.0"));
Moq also is the first and only framework so far to provide Linq to Mocks, so that the same behavior above can be achieved much more succintly:
ILoveThisFramework lovable = Mock.Of<ILoveThisFramework>(l =>
l.DownloadExists("2.0.0.0") == true);
// Hand the instance as a collaborator and exercise it,
// like calling methods on it...
bool download = lovable.DownloadExists("2.0.0.0");
// Simply assert the returned state:
Assert.True(download);
// If you really want to go beyond state testing and want to
// verify the mock interaction instead...
Mock.Get(lovable).Verify(framework => framework.DownloadExists("2.0.0.0"));
You can think of Linq to Mocks as "from the universe of mocks, give me one whose behavior matches this expression".
Checkout the Quickstart for more examples!
Moq (pronounced "Mock-you" or just "Mock") is the only mocking library for .NET developed from scratch to take full advantage of .NET Linq expression trees and lambda expressions, which makes it the most productive, type-safe and refactoring-friendly mocking library available. And it supports mocking interfaces as well as classes. Its API is extremely simple and straightforward, and doesn‘t require any prior knowledge or experience with mocking concepts.
The library was created mainly for developers who aren‘t currently using any mocking library (or are displeased with the complexities of some other implementation), and who are typically manually writing their own mocks (with more or less "fanciness"). Most developers in this situation also happen to be quite pragmatic and adhere to state (or classic) TDD. It‘s the result of feeling that the barrier of entry from other mocking libraries is a bit high, and a simpler, more lightweight and elegant approach is possible. Moq achieves all this by taking full advantage of the elegant and compact C# and VB language features collectively known as LINQ (they are not just for queries, as the acronym implies).
Moq is designed to be a very practical, unobtrusive and straight-forward way to quickly setup dependencies for your tests. Its API design helps even novice users to fall in the "pit of success" and avoid most common misuses/abuses of mocking.
When it was conceived, it was the only mocking library that went against the generalized and somewhat unintuitive (especially for novices) Record/Replay approach from all other frameworks (and that might have been a good thing ;)).
Not using Record/Replay also means that it‘s straightforward to move common expectations to a fixture setup method and even override those expectations when needed in a specific unit test.
You can read more about the "why" and see some nice screenshots at kzu‘s blog.
See our Quickstart examples to get a feeling of the extremely simple API and install from nuget. Check out the API documentation at NuDoq.
Read about the announcement at kzu‘s blog. Get some background on the state of mock libraries from Scott Hanselman.
Moq was originally developed by Clarius, Manas and InSTEDD.
Moq uses Castle DynamicProxy internally as the interception mechanism to enable mocking. It‘s merged into Moq binaries, so you don‘t need to do anything other than referencing Moq.dll, though.
Moq offers the following features:
You don‘t need a commercial license just to use Moq, even if it is for a commercial product, unless your company just doesn‘t use "open source software", in which case, a commercial license means they are buying the product like they would any other piece of software for the company.
If you still think you need a commercial license or just want premium support, contact us.
We appreciate deeply any feedback that you may have!
标签:
原文地址:http://www.cnblogs.com/bdbw2012/p/4563504.html