Stashbox.Moq 4.7.0

dotnet add package Stashbox.Moq --version 4.7.0
NuGet\Install-Package Stashbox.Moq -Version 4.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Stashbox.Moq" Version="4.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Stashbox.Moq --version 4.7.0
#r "nuget: Stashbox.Moq, 4.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Stashbox.Moq as a Cake Addin
#addin nuget:?package=Stashbox.Moq&version=4.7.0

// Install Stashbox.Moq as a Cake Tool
#tool nuget:?package=Stashbox.Moq&version=4.7.0

stashbox-mocking

Appveyor build status GitHub Workflow Status Sourcelink

Mocking framework integrations for Stashbox that provide automatic mock creation for your services in unit tests.

Moq FakeItEasy NSubstitute RhinoMocks
NuGet Version NuGet Version NuGet Version NuGet Version

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 of StashMoq with that it will call the VerifyAll() 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5

  • .NETStandard 2.1

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.7.0 4,716 6/21/2023
4.6.0 128 6/5/2023
4.5.2 341 3/29/2023
4.5.1 189 3/29/2023
4.5.0 222 2/28/2023
4.4.1 350 1/20/2023
4.4.0 688 12/6/2022
4.3.2 304 11/29/2022
4.3.1 401 10/14/2022
4.3.0 377 10/12/2022
4.2.3 409 9/9/2022
4.2.2 434 6/2/2022
4.2.1 3,990 5/17/2022
4.2.0 4,458 5/3/2022
4.1.2 557 3/12/2022
4.1.1 438 3/12/2022
4.1.0 433 3/7/2022
4.0.1 649 2/10/2022
4.0.0 658 2/9/2022
3.0.0 527 11/22/2021
2.4.3 1,206 5/26/2021
2.4.2 648 3/16/2021
2.4.1 538 11/15/2020
2.4.0 461 11/3/2020
2.3.6 441 11/2/2020
2.3.5 508 10/19/2020
2.3.4 507 10/19/2020
2.3.3 489 10/19/2020
2.3.2 22,221 6/30/2020
2.3.1 644 6/22/2020
2.3.0 583 6/8/2020
2.2.1 508 6/8/2020
2.1.5 6,025 11/11/2019
2.1.4 627 10/4/2019
2.1.2 1,120 9/12/2019
2.1.1 621 9/11/2019
1.4.7 1,785 6/10/2019
1.4.6 13,211 1/13/2019
1.4.5 782 12/27/2018
1.4.3 997 10/20/2018
1.4.2 16,399 6/15/2018
1.4.1 925 6/15/2018
1.3.9 6,710 3/20/2018
1.3.8 1,793 2/8/2018
1.3.6 1,083 2/5/2018
1.2.11 9,161 11/24/2017
1.2.8 984 8/7/2017
1.2.7 948 6/28/2017
1.2.6 1,107 6/9/2017
1.2.4 1,043 5/18/2017
1.2.3 1,055 5/16/2017
1.2.2 1,044 5/16/2017
1.2.1 1,031 5/15/2017