We would like to mock the OperationContext class for testing purposes. We are using 'Mock'. But OperationContext is a sealed class and cannot be mocked. Therefore we are trying to create a dummy OperationContext object. But OperationContext constructor takes 'IContextChannel' as parameter. We would like to know of a way to get hold of a 'IContextChannel' so that it can be passed to the OperationContext constructor.

Thanks Satyaprakash J

link|improve this question
feedback

1 Answer

The NetFX project contains a number of wrapper classes and interfaces to allow just this sort of thing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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