Stashbox.Moq
4.5.0
See the version list below for details.
dotnet add package Stashbox.Moq --version 4.5.0
NuGet\Install-Package Stashbox.Moq -Version 4.5.0
<PackageReference Include="Stashbox.Moq" Version="4.5.0" />
paket add Stashbox.Moq --version 4.5.0
#r "nuget: Stashbox.Moq, 4.5.0"
// Install Stashbox.Moq as a Cake Addin #addin nuget:?package=Stashbox.Moq&version=4.5.0 // Install Stashbox.Moq as a Cake Tool #tool nuget:?package=Stashbox.Moq&version=4.5.0
stashbox-mocking
Mocking framework integrations for Stashbox that provide automatic mock creation for your services in unit tests.
Moq | FakeItEasy | NSubstitute | RhinoMocks |
---|---|---|---|
Moq
You can use the auto mock framework by creating a StashMoq
instance wrapped in a using statement, on its disposal it will call Verify()
on all the configured expectations.
//begin a test scope
using (var stash = StashMoq.Create())
{
//configure a mock dependency
stash.Mock<IDependency>().Setup(m => m.Test()).Returns("test");
//configure the mock again
//this call will get the same mock back as the first request
stash.Mock<IDependency>().Setup(m => m.Test2());
//get the tested service filled with auto created mocks (except the configured ones)
var service = stash.Get<IService>();
//call the tested method, imagine that this will invoke the Test() method of an IDependency
var result = service.Test();
//check the result
Assert.Equal("test", result);
} //StashMoq will call the Verify() method on all configured expectations on its dispose
You can also set the
verifyAll
parameter ofStashMoq
with that it will call theVerifyAll()
on the used mock repository.StashMoq.Create(verifyAll: true)
Mock behavior
You can set which mock behavior should be used by the framework by default.
using (var stash = StashMoq.Create(MockBehavior.Strict)) //the default will be strict
{
//this mock will be strict
stash.Mock<IDependency>().Setup(m => m.Test()).Returns("test");
//you can also override the default config, this mock will be loose
stash.Mock<IDependency2>(MockBehavior.Loose).Setup(...);
}
FakeItEasy
You can use the auto mock framework by creating a StashItEasy
instance wrapped in a using statement.
//begin a test scope
using (var stash = StashItEasy.Create())
{
//configure a mock dependency
var fake = stash.Fake<IDependency>();
//configure the call
A.CallTo(() => fake.Test()).Returns("test");
//get the tested service filled with auto created fakes (except the configured ones)
var service = stash.Get<IService>();
//call the tested method, imagine that this will invoke the Test() method of the IDependency
var result = service.Test();
//check the call
A.CallTo(() => fake.Test()).MustHaveHappened();
//check the result
Assert.Equal("test", result);
}
Options
You can set what fake options should be used by the framework by default.
using (var stash = StashItEasy.Create(x => x.Strict())) //the default will be strict
{
//this fake will be strict
stash.Fake<IDependency>();
//you can also override the default config
stash.Fake<IDependency>(x => x.Implements<IDependency3>());
}
NSubstitute
You can use the auto mock framework by creating a StashSubstitute
instance wrapped in a using statement.
//begin a test scope
using (var stash = StashSubstitute.Create())
{
//configure a mock dependency
var sub = stash.Sub<IDependency>(); //for multiple interface implementations use the overloads of this method
sub.Test().Returns("test");
//get the tested service filled with auto created mocks (except the configured ones)
var service = stash.Get<IService>();
//call the tested method, imagine that this will invoke the Test() method of an IDependency
var result = service.Test();
//check the call
sub.Recieved().Test();
//check the result
Assert.Equal("test", result);
}
You can also get a partial mock with the
stash.Partial<IDependency>()
call.
RhinoMocks
You can use the auto mock framework by creating a StashRhino
instance wrapped in a using statement, on its disposal it will call VerifyAllExpectations()
on all the configured expectations.
//begin a test scope
using (var stash = StashRhino.Create())
{
//configure a mock dependency
stash.Mock<IDependency>().Expect(x => x.Test()).Returns("test");
//configure the mock again
//this call will get the same mock back as the first request
stash.Mock<IDependency>().Expect(m => m.Test2());
//get the tested service filled with auto created mocks (except the configured ones)
var service = stash.Get<IService>();
//call the tested method, imagine that this will invoke the Test() method of an IDependency
var result = service.Test();
//check the result
Assert.Equal("test", result);
} //StashRhino will call the VerifyAllExpectations() method on all configured expectations on its dispose
Mock types
You can also request different mock types from StashRhino
:
using (var stash = StashRhino.Create())
{
//this will create a dynamic mock
stash.Mock<IDependency>();
//this will create a strict mock
stash.Strict<IDependency>();
//this will create a partial mock
stash.Partial<IDependency>();
}
Further things that each package offers
- All package allows the service instantiation by a selected constructor with pre-evaluated arguments:
var service = stash.GetWithConstructorArgs<Service>(mockObject1, mockObject2);
//you can also use a placeholder argument where you don't want to set a concrete object
var service = stash.GetWithConstructorArgs<Service>(StashArg.Any<IMock>(), mockObject2);
If you use an argument placeholder with a non-mockable type, the framework will throw a
NonMockableTypeException
.
- All package allows the dependency override with pre-evaluated dependencies:
//this will inject the `mockObject1` into the created `Service` everywhere it fits by its type
var service = stash.GetWithParamOverrides<Service>(mockObject1);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.8.0 | 164 | 10/1/2024 |
4.7.1 | 141 | 4/8/2024 |
4.7.0 | 5,730 | 6/21/2023 |
4.6.0 | 156 | 6/5/2023 |
4.5.2 | 407 | 3/29/2023 |
4.5.1 | 217 | 3/29/2023 |
4.5.0 | 250 | 2/28/2023 |
4.4.1 | 399 | 1/20/2023 |
4.4.0 | 860 | 12/6/2022 |
4.3.2 | 336 | 11/29/2022 |
4.3.1 | 433 | 10/14/2022 |
4.3.0 | 404 | 10/12/2022 |
4.2.3 | 438 | 9/9/2022 |
4.2.2 | 461 | 6/2/2022 |
4.2.1 | 4,045 | 5/17/2022 |
4.2.0 | 5,383 | 5/3/2022 |
4.1.2 | 591 | 3/12/2022 |
4.1.1 | 464 | 3/12/2022 |
4.1.0 | 462 | 3/7/2022 |
4.0.1 | 675 | 2/10/2022 |
4.0.0 | 682 | 2/9/2022 |
3.0.0 | 562 | 11/22/2021 |
2.4.3 | 1,234 | 5/26/2021 |
2.4.2 | 693 | 3/16/2021 |
2.4.1 | 569 | 11/15/2020 |
2.4.0 | 486 | 11/3/2020 |
2.3.6 | 469 | 11/2/2020 |
2.3.5 | 538 | 10/19/2020 |
2.3.4 | 534 | 10/19/2020 |
2.3.3 | 517 | 10/19/2020 |
2.3.2 | 22,414 | 6/30/2020 |
2.3.1 | 677 | 6/22/2020 |
2.3.0 | 608 | 6/8/2020 |
2.2.1 | 536 | 6/8/2020 |
2.1.5 | 6,159 | 11/11/2019 |
2.1.4 | 664 | 10/4/2019 |
2.1.2 | 1,147 | 9/12/2019 |
2.1.1 | 644 | 9/11/2019 |
1.4.7 | 1,813 | 6/10/2019 |
1.4.6 | 13,245 | 1/13/2019 |
1.4.5 | 808 | 12/27/2018 |
1.4.3 | 1,027 | 10/20/2018 |
1.4.2 | 16,629 | 6/15/2018 |
1.4.1 | 956 | 6/15/2018 |
1.3.9 | 6,807 | 3/20/2018 |
1.3.8 | 1,839 | 2/8/2018 |
1.3.6 | 1,109 | 2/5/2018 |
1.2.11 | 9,193 | 11/24/2017 |
1.2.8 | 1,015 | 8/7/2017 |
1.2.7 | 976 | 6/28/2017 |
1.2.6 | 1,133 | 6/9/2017 |
1.2.4 | 1,071 | 5/18/2017 |
1.2.3 | 1,079 | 5/16/2017 |
1.2.2 | 1,076 | 5/16/2017 |
1.2.1 | 1,059 | 5/15/2017 |