Code Monkey home page Code Monkey logo

Comments (3)

blairconrad avatar blairconrad commented on June 10, 2024 2

Hi, @FixRM. Sorry you're having a hard time.

I have never used dynamics so am not coming in with much experience, but it does seem that the dynamic type of the value supplied to Returns is causing the problem (not the type of CallerState; I was surprised). I think dynamic values infect things they touch. I was trying to write a test to reproduce your problem and FluentAssertions was also messed up: fake.CallerState.MyProp.Should().Be(42) fails.

A little digging tells me that a well-known effect of using dynamic is that you can no longer use extension methods on objects.

Anyhow, even before I dug, I found that

var fake = A.Fake<IHubCallerConnectionContext>();
dynamic state = new ExpandoObject();
state.MyProp = 42;
A.CallTo(() => fake.CallerState).Returns((object)state);

// I can even set and test the values later:
bool same1 = 42 == fake.CallerState.MyProp;
same1.Should().Be(true);

fake.CallerState.AnotherProp = 3;
bool same2 = 3 == fake.CallerState.AnotherProp;
same2.Should().Be(true);

works. It's not the most elegant, but I think is preferable to using ReturnsLazily (you may not feel the same 😉).

I can try to look more later, but given the weirdness of dynamic, I'm not sure we're going to get to a better "solution". If nothing else, there's probably an opportunity to improve the docs, though.

from fakeiteasy.

thomaslevesque avatar thomaslevesque commented on June 10, 2024 1

@blairconrad's explanation is correct. Basically, dynamic messes up with extension methods. Just casting the value to object is probably the easiest fix.

from fakeiteasy.

FixRM avatar FixRM commented on June 10, 2024

Casting to object - is genius! Thank you, guys.

from fakeiteasy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.