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 8361257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T11:39:29+00:00 2026-06-09T11:39:29+00:00

Test below fails on last Assert() with this message: Expected: arg2 But was: arg1

  • 0

Test below fails on last Assert() with this message:
Expected: “arg2”
But was: “arg1”

It seems when "arg1" passed first time – typed factory remembers this and ignores "arg2" from second call. Why?

public class E
{
    public string Arg { get; set; }

    public E(string arg)
    {
        Arg = arg;
    }
}

public interface IEFactory
{
    E Create(string arg);
}

[Test]
public void TypedFactoryWorksAsExpected()
{
    var windsor = new WindsorContainer();
    windsor.Kernel.AddFacility<TypedFactoryFacility>();
    windsor.Register(
        Component.For<E>(), 
        Component.For<IEFactory>().AsFactory());

    var factory = windsor.Resolve<IEFactory>();
    var e1 = factory.Create("arg1");
    var e2 = factory.Create("arg2");

    Assert.AreEqual("arg1", e1.Arg);

    // This line fails with  message: 
    // 'Expected: "arg2" But was: "arg1".'
    Assert.AreEqual("arg2", e2.Arg);
}
  • 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-06-09T11:39:30+00:00Added an answer on June 9, 2026 at 11:39 am

    For windsor components are singletons by default. Your E is a singleton because you didn’t specify anything else. The second call does not ignore the argument but reuses the previous instance because it is a singleton.

    You have to define that E is a transient:

    windsor.Register(Component.For<E>().LifeStyle.Transient);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My _spec file includes the code below, but my test fails with: NameError in
I found this orientation test code below looking for JQTouch reference material. This works
The error message is kinda vague... The query below works on one server, but
Below I listed some code from simple Rails application. The test listed below fails
The below Unit Test fails, and I am looking for a valid reason for
How do you test if compiled code returns the expected output or fails as
If 1 test fails, tons of others do. How could I change this so
What is the best way to test code like this (the one below obviously
In the test below, the Bar and Baz blocks contain identical specs. Leaving aside
I have the dataframe p3 below: test result 1 1 26.87778 2 1 24.52598

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.