I would like to implement the following method:
public static T CreateProxyObject<T>(Dictionary<String,Object> setup)
With the following Rules:
1) I want to stay as generic as possible means T is not known during compile time and I want to be able to return it to user as the mocked/proxy requested type (user can still use normal intellisense to get object's metadata).
2) It should have all its properties set/setup based on the setup Dictionary:
String-> property name of the object
Object-> the return value for this property
Any other method should be implemented with throwing not implemented exception
I was trying to use mock of T (from Moq framework) but T must be reference type.
Had no success as well with Castle DynamicProxy and RealProxy.
Any Idea?