I'm using the Facebook C# SDK in my project and for testing purposes would like to be able to stub out the FacebookClient and insert my own fake client which will return pre-defined responses to Facebook API calls (I'm only calling the FacebookClient.Get method in my application). Achieving this is pretty easy using a factory pattern and a configurable StructureMap setup.
Apart from one thing...
My fake FacebookClient needs to return Facebook.JsonArray objects.
I've been sifting through the SDK source code, and can see that the SimpleJson class can be used to create JsonArray objects. However it is marked as internal, unless I start messing around and rebuilding the SDK.
Is there a simpler way?
SimpleJsonclass through reflection. – jam40jeff Dec 29 '12 at 20:02