I've got a controller method:

public JsonResult CalculateStuff(int coolArg)
{
    if(calculatePossible)
       return Json(CoolMethod(coolArg));
    else return Json(new { Calculated = false });
}

Now, I'd like to test this.

public void MyTest
{
    var controller = GetControllerInstance();
    var result = controller.CalculateStuff().Data as dynamic;
    Assert.IsTrue(result.Calculated == false);        
}

This throws a RuntimeBinderException saying that Calculated is not defined. Is there any way to achieve this?

UPDATE

Following Jons' advice, I used InternalsVisibleTo to befriend my test assembly. Everything works fine. Thank you Jon.

link|improve this question

So, shouldn't you accept Jons' answer then? – Patrick Huizinga May 24 '11 at 14:50
@Patrick Well I would have done it immediately, but SO told me that I needed to wait 10 minutes... Will do now. – Max May 24 '11 at 15:05
Ah, my apologies. I've never had the luxury of a quick great answer and therefor having to wait some time before accepting it. – Patrick Huizinga May 25 '11 at 7:44
feedback

1 Answer

up vote 4 down vote accepted

You can do it, but only within the same assembly. The anonymous type is internal.

It should also be okay if you use InternalsVisibleTo in your production assembly to grant access to your test assembly though.

link|improve this answer
Blerg. Thanks! :) (The blerg is because I would rather not use InternalsVisibleTo - but I guess it's fine since the assembly after all is logically quite tightly paired to the test assembly.) – Max May 24 '11 at 13:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.