Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6538047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:41:21+00:00 2026-05-25T10:41:21+00:00

I have started using the UnityAutoMoqContainer Here is the Link and I have below

  • 0

I have started using the UnityAutoMoqContainer Here is the Link
and I have below 2 questions in particularly around container.GetMock() call.

  1. I would expect the below Assert to succeed however it throws an exception.

    private UnityAutoMoqContainer container;
    
    [SetUp]
    public void SetUp()
    {
        container = new UnityAutoMoqContainer();
    }
    
    [Test]
    public void Are_mocks_Same(){
    
        var serviceMock = new Mock<IService>();
        var getMock = container.GetMock<IService>();             
        Assert.AreSame(getMock, serviceMock);
    }
    

Error 1 Test
‘UnityAutoMoq.Tests.UnityAutoMoqContainerFixture.Are_mocks_Same’
failed: Expected: same as at
UnityAutoMoq.Tests.UnityAutoMoqContainerFixture.Are_mocks_Same() in
C:\Users…….

So why when “Expected” and the “But was” are same it still throws an exception?

The difference I see is that GetMock uses the Unity to resolve i,e Resolve() dependencies where the new Mock doesn’t. But I cannot explain my self the cause of this exception.

  1. Resolving abstract types:

    I use the Moq.Mock to resolve an abstract type as below.

        var httpContextBaseMock = new Mock<HttpContextBase>();
    

However the below call to the UnityAutoMoqContainer throws the exception:

        var mock = container.GetMock<HttpContextBase>();

Resolution of the dependency failed, type =
“System.Web.HttpContextBase”, name = “(none)”. Exception occurred
while: while resolving. Exception is: InvalidOperationException – The
type HttpContextBase cannot be constructed. You must configure the
container to supply this value.

The question is why the container does not facilitate to return a mocked abstract type?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T10:41:21+00:00Added an answer on May 25, 2026 at 10:41 am

    The AreSame method tests that the same object are referenced by both arguments. When you do

    var serviceMock = new Mock<IService>();
    var getMock = container.GetMock<IService>();
    Assert.AreSame(getMock, serviceMock);
    

    you create two different objects and they will never be the same reference. There is no way the automock container can know about the instance you created without using the container. However, this will succeed:

    var mock1 = container.GetMock<IService>();
    var mock2 = container.GetMock<IService>();
    Assert.AreSame(mock1, mock2);
    

    Not being able to create mocks from abstract types is a bug, but should be fixed now. If you update to v2.1.0 it should hopefully work as expected.

    Hope this helps!

    -Thomas

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have started using Jython as it seems to be a excellent language, and
I have started using Linq to SQL in a (bit DDD like) system which
I have started using aspects for parameter validation in our development framework. It works
We have started using Spring framework in my project. After becoming acquainted with the
Since I have started using this site, I keep hearing about the Boost library.
I knew I should never have started using c++ io, the whole type safety
We have a website running .NET 2.0 and have started using the ASP.Net HttpRuntime.Cache
We user JIRA for bug tracking and release management and we have started using
Have just started using Google Chrome , and noticed in parts of our site,
Have just started using Visual Studio Professional's built-in unit testing features, which as I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.