I am trying to write a test and need to create a Message object with the IsFault property set to true. However, this property only has a getter. Does anyone know the best way to create a message where this property would be set to true?
Thanks
|
I am trying to write a test and need to create a Thanks
| ||||
|
feedback
|
|
Use the
| |||
|
feedback
|
|
Possibly think about making a setter on the object with a proteced, internal or protected internal scope on. i.e.
Andrew Reflection is another route, but I would think the first solution should work. Andrew | |||
|
feedback
|